We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e62997 commit d64bc28Copy full SHA for d64bc28
cores/esp32/esp32-hal-uart.h
@@ -116,6 +116,10 @@ void uart_send_break(uint8_t uartNum);
116
// Sends a buffer and at the end of the stream, it generates BREAK in the line
117
int uart_send_msg_with_break(uint8_t uartNum, uint8_t *msg, size_t msgSize);
118
119
+// UART RX Timeout (in UART Symbols) depends on the UART Clock Source and the SoC that is used
120
+// This is a helper function that calculates what is the maximum RX Timeout that a running UART IDF driver allows.
121
+uint16_t uart_get_max_rx_timeout(uint8_t uartNum);
122
+
123
#ifdef __cplusplus
124
}
125
#endif
0 commit comments