mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04: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:
parent
15b6b64c99
commit
f58c5b21ec
@ -521,7 +521,8 @@ config INT_WDT
|
||||
config INT_WDT_TIMEOUT_MS
|
||||
int "Interrupt watchdog timeout (ms)"
|
||||
depends on INT_WDT
|
||||
default 300
|
||||
default 300 if !SPIRAM_SUPPORT
|
||||
default 800 if SPIRAM_SUPPORT
|
||||
range 10 10000
|
||||
help
|
||||
The timeout of the watchdog, in miliseconds. Make this higher than the FreeRTOS tick rate.
|
||||
|
Loading…
Reference in New Issue
Block a user