fix(uart): fix parenthesis typo on UART_INTR_CONFIG_FLAG macro

No real impact on the logic, just typo fix
Closes https://github.com/espressif/esp-idf/issues/17885
This commit is contained in:
Song Ruo Jing
2025-11-21 16:57:51 +08:00
parent 1067b313c6
commit 474477fd4b
+2 -2
View File
@@ -85,8 +85,8 @@ static const char *UART_TAG = "uart";
| (UART_INTR_RXFIFO_TOUT) \
| (UART_INTR_RXFIFO_OVF) \
| (UART_INTR_BRK_DET) \
| (UART_INTR_PARITY_ERR)) \
| (UART_INTR_WAKEUP)
| (UART_INTR_PARITY_ERR) \
| (UART_INTR_WAKEUP))
#else
#define UART_INTR_CONFIG_FLAG ((UART_INTR_RXFIFO_FULL) \
| (UART_INTR_RXFIFO_TOUT) \