From 248b61ef51eccd9300beba767bac116437cedc54 Mon Sep 17 00:00:00 2001 From: Li Shuai Date: Mon, 30 Dec 2024 20:05:03 +0800 Subject: [PATCH] fix(uart): fix esp32c61 light sleep uart wakeup failed --- components/hal/esp32c61/include/hal/uart_ll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/hal/esp32c61/include/hal/uart_ll.h b/components/hal/esp32c61/include/hal/uart_ll.h index 5910cad8af..5cff1d1f5e 100644 --- a/components/hal/esp32c61/include/hal/uart_ll.h +++ b/components/hal/esp32c61/include/hal/uart_ll.h @@ -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)