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 af3ec5b commit 84da944Copy full SHA for 84da944
cores/esp32/esp32-hal-uart.h
@@ -65,6 +65,7 @@ uint32_t uartGetBaudRate(uart_t *uart);
65
// invMask can be UART_SIGNAL_RXD_INV, UART_SIGNAL_TXD_INV, UART_SIGNAL_RTS_INV, UART_SIGNAL_CTS_INV
66
// returns the operation success status
67
bool uartPinSignalInversion(uart_t *uart, uint32_t invMask, bool inverted);
68
+// functions used to individually enable or disable UART pins inversion
69
bool uartSetRxInvert(uart_t *uart, bool invert);
70
bool uartSetTxInvert(uart_t *uart, bool invert);
71
bool uartSetCtsInvert(uart_t *uart, bool invert);
0 commit comments