1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef DTM_UART_H__
- #define DTM_UART_H__
- #include <stdint.h>
- #include "dtm_uart_params.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define UART_PIN_DISCONNECTED 0xFFFFFFFF
- uint32_t dtm_start(app_uart_stream_comm_params_t uart_comm_params);
- #ifdef __cplusplus
- }
- #endif
- #endif
|