mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +02:00
fix(esp_system): properly exclude XTAL32K WDT from other chips
Closes https://github.com/espressif/esp-idf/issues/13955
This commit is contained in:
@ -411,7 +411,7 @@ menu "ESP System Settings"
|
|||||||
default 800 if (SPIRAM && IDF_TARGET_ESP32)
|
default 800 if (SPIRAM && IDF_TARGET_ESP32)
|
||||||
range 10 10000
|
range 10 10000
|
||||||
help
|
help
|
||||||
The timeout of the watchdog, in miliseconds. Make this higher than the FreeRTOS tick rate.
|
The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.
|
||||||
|
|
||||||
config ESP_INT_WDT_CHECK_CPU1
|
config ESP_INT_WDT_CHECK_CPU1
|
||||||
bool "Also watch CPU1 tick interrupt"
|
bool "Also watch CPU1 tick interrupt"
|
||||||
@ -485,7 +485,7 @@ menu "ESP System Settings"
|
|||||||
|
|
||||||
config ESP_XT_WDT
|
config ESP_XT_WDT
|
||||||
bool "Initialize XTAL32K watchdog timer on startup"
|
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
|
default n
|
||||||
help
|
help
|
||||||
This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure
|
This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure
|
||||||
|
Reference in New Issue
Block a user