Skip to content

Commit

Permalink
Merge branch 'fix/correct_esp_xt_wdt_configuration_v5.3' into 'releas…
Browse files Browse the repository at this point in the history
…e/v5.3'

fix(esp_system): properly exclude XTAL32K WDT from other chips (v5.3)

See merge request espressif/esp-idf!31745
  • Loading branch information
ESP-Marius committed Aug 2, 2024
2 parents b82594e + c658ae6 commit 3914802
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/esp_system/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ menu "ESP System Settings"
default 800 if (SPIRAM && IDF_TARGET_ESP32)
range 10 10000
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
bool "Also watch CPU1 tick interrupt"
Expand Down Expand Up @@ -485,7 +485,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 3914802

Please sign in to comment.