dtm_uart.h 743 B

1234567891011121314151617181920212223
  1. /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
  2. *
  3. * The information contained herein is property of Nordic Semiconductor ASA.
  4. * Terms and conditions of usage are described in detail in NORDIC
  5. * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
  6. *
  7. * Licensees are granted free, non-transferable use of the information. NO
  8. * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
  9. * the file.
  10. *
  11. */
  12. #ifndef DTM_UART_H__
  13. #define DTM_UART_H__
  14. #include <stdint.h>
  15. #include "dtm_uart_params.h"
  16. #define UART_PIN_DISCONNECTED 0xFFFFFFFF /**< Value indicating that no pin is connected to this UART register. */
  17. uint32_t dtm_start(app_uart_stream_comm_params_t uart_comm_params);
  18. #endif // DTM_UART_H__