From: Ivan Grokhotkov Date: Fri, 28 Oct 2016 08:17:41 +0000 (+0800) Subject: set default interrupt watchdog timeout to 300ms X-Git-Tag: v1.0~96^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ffd6155f28eb906212238868fe242e0aeaa6da4;p=esp-idf 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. --- diff --git a/components/esp32/Kconfig b/components/esp32/Kconfig index 3b50dbd2c3..b5a8d2f2dd 100644 --- a/components/esp32/Kconfig +++ b/components/esp32/Kconfig @@ -206,7 +206,7 @@ config INT_WDT config INT_WDT_TIMEOUT_MS int "Interrupt watchdog timeout (ms)" depends on INT_WDT - default 10 + default 300 range 10 10000 help The timeout of the watchdog, in miliseconds. Make this higher than the FreeRTOS tick rate.