fix(esp_hw_support): change esp_sleep_clock_option_t to fix idf-13119

This commit is contained in:
hebinglin
2025-08-01 16:55:22 +08:00
committed by BOT
parent e58562e030
commit 1e89698c60

View File

@@ -110,7 +110,8 @@ typedef enum {
*/ */
typedef enum { typedef enum {
ESP_SLEEP_CLOCK_OPTION_GATE, //!< Gate the clock in sleep mode 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; } esp_sleep_clock_option_t;
/** /**