Skip to content

Commit

Permalink
fix(esp_system): properly exclude XTAL32K WDT from other chips
Browse files Browse the repository at this point in the history
Closes #13955
  • Loading branch information
0xjakob committed Jun 13, 2024
1 parent 3f827ba commit 22561ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp_system/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,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
Expand Down

0 comments on commit 22561ee

Please sign in to comment.