mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 03:34:32 +02:00
watchdog: increase default INT WDT interval if SPIRAM is used
Running heap_caps_check_integrity for 4MB of PSRAM can take longer than the default WDT interval, 300ms.
This commit is contained in:
@@ -521,7 +521,8 @@ config INT_WDT
|
|||||||
config INT_WDT_TIMEOUT_MS
|
config INT_WDT_TIMEOUT_MS
|
||||||
int "Interrupt watchdog timeout (ms)"
|
int "Interrupt watchdog timeout (ms)"
|
||||||
depends on INT_WDT
|
depends on INT_WDT
|
||||||
default 300
|
default 300 if !SPIRAM_SUPPORT
|
||||||
|
default 800 if SPIRAM_SUPPORT
|
||||||
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 miliseconds. Make this higher than the FreeRTOS tick rate.
|
||||||
|
Reference in New Issue
Block a user