fix(uart): fix esp32c61 light sleep uart wakeup failed

This commit is contained in:
Li Shuai
2024-12-30 20:53:24 +08:00
parent ff3c790ad1
commit f453380760

View File

@ -31,7 +31,7 @@ extern "C" {
// Get UART hardware instance with giving uart num
#define UART_LL_GET_HW(num) (((num) == UART_NUM_0) ? (&UART0) : (&UART1))
#define UART_LL_MIN_WAKEUP_THRESH (2)
#define UART_LL_MIN_WAKEUP_THRESH (3)
#define UART_LL_INTR_MASK (0x7ffff) //All interrupt mask
#define UART_LL_FSM_IDLE (0x0)