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

This commit is contained in:
Li Shuai
2024-12-30 20:26:40 +08:00
committed by BOT
parent e2113d927d
commit 27f0aef7c1

View File

@ -30,7 +30,7 @@ extern "C" {
// Get UART hardware instance with giving uart num
#define UART_LL_GET_HW(num) (((num) == UART_NUM_0) ? (&UART0) : (((num) == UART_NUM_1) ? (&UART1) : (&UART2)))
#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)