Merge branch 'bugfix/pm-300-v5.3' into 'release/v5.3'

backport v5.3: fix some esp32c5 and esp32c61 light sleep wakeup issues

See merge request espressif/esp-idf!36076
This commit is contained in:
Jiang Jiang Jian
2025-01-21 16:47:44 +08:00
2 changed files with 16 additions and 19 deletions

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)