From 3b330b4f2f664c0df47dea8be31d028467595efd Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Wed, 12 Jun 2024 11:50:52 +0200 Subject: [PATCH] fix(esp_system): properly exclude XTAL32K WDT from other chips Closes https://github.com/espressif/esp-idf/issues/13955 --- components/esp_system/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_system/Kconfig b/components/esp_system/Kconfig index 4f39dc7287..e2be7ac90a 100644 --- a/components/esp_system/Kconfig +++ b/components/esp_system/Kconfig @@ -471,7 +471,7 @@ menu "ESP System Settings" config ESP_XT_WDT bool "Initialize XTAL32K watchdog timer on startup" - depends on !IDF_TARGET_ESP32 && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL) + depends on SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL) default n help This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure