set default interrupt watchdog timeout to 300ms

10ms is too low for openocd/gdb to work, so it's not a very useful default value.
This commit is contained in:
Ivan Grokhotkov 2016-10-28 16:17:41 +08:00
parent 0e90983c9f
commit 5ffd6155f2

View file

@ -206,7 +206,7 @@ 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 10 default 300
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.