Skip to content

Commit 248b61e

Browse files
committed
fix(uart): fix esp32c61 light sleep uart wakeup failed
1 parent 0f20fcb commit 248b61e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/hal/esp32c61/include/hal/uart_ll.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ extern "C" {
3030
// Get UART hardware instance with giving uart num
3131
#define UART_LL_GET_HW(num) (((num) == UART_NUM_0) ? (&UART0) : (((num) == UART_NUM_1) ? (&UART1) : (&UART2)))
3232

33-
#define UART_LL_MIN_WAKEUP_THRESH (2)
33+
#define UART_LL_MIN_WAKEUP_THRESH (3)
3434
#define UART_LL_INTR_MASK (0x7ffff) //All interrupt mask
3535

3636
#define UART_LL_FSM_IDLE (0x0)

0 commit comments

Comments
 (0)