From fcaa68aca9a20f4c71b76757f0755cbf6a5880be Mon Sep 17 00:00:00 2001 From: cjin Date: Fri, 13 Mar 2026 17:18:38 +0800 Subject: [PATCH] fix(pm): expand the number of skip light sleep number --- components/esp_pm/pm_impl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_pm/pm_impl.c b/components/esp_pm/pm_impl.c index 9d48750c73..cc85ff17a7 100644 --- a/components/esp_pm/pm_impl.c +++ b/components/esp_pm/pm_impl.c @@ -133,7 +133,7 @@ static uint32_t s_mode_mask; #if CONFIG_FREERTOS_USE_TICKLESS_IDLE -#define PERIPH_SKIP_LIGHT_SLEEP_NO 2 +#define PERIPH_SKIP_LIGHT_SLEEP_NO 3 /* Indicates if light sleep should be skipped by peripherals. */ static skip_light_sleep_cb_t s_periph_skip_light_sleep_cb[PERIPH_SKIP_LIGHT_SLEEP_NO];