From 1e89698c602db5a5d8427340dddf03d745a86882 Mon Sep 17 00:00:00 2001 From: hebinglin Date: Fri, 1 Aug 2025 16:55:22 +0800 Subject: [PATCH] fix(esp_hw_support): change esp_sleep_clock_option_t to fix idf-13119 --- .../esp_hw_support/include/esp_private/esp_sleep_internal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/esp_hw_support/include/esp_private/esp_sleep_internal.h b/components/esp_hw_support/include/esp_private/esp_sleep_internal.h index d66b739d8e..ec53ba31d8 100644 --- a/components/esp_hw_support/include/esp_private/esp_sleep_internal.h +++ b/components/esp_hw_support/include/esp_private/esp_sleep_internal.h @@ -110,7 +110,8 @@ typedef enum { */ typedef enum { ESP_SLEEP_CLOCK_OPTION_GATE, //!< Gate the clock in sleep mode - ESP_SLEEP_CLOCK_OPTION_UNGATE //!< Ungate the clock in sleep mode + ESP_SLEEP_CLOCK_OPTION_UNGATE, //!< Ungate the clock in sleep mode + ESP_SLEEP_CLOCK_OPTION_MAX } esp_sleep_clock_option_t; /**