From f03e81b0927fd0eabfc996692c01e440aa251d63 Mon Sep 17 00:00:00 2001 From: Supreet Deshpande Date: Wed, 6 May 2020 12:41:40 +0530 Subject: [PATCH] task_watchdog: Fixed the default timeout The watchdog timeout was mistakenly getting set to 6 seconds instead of 26 seconds due to incorrect macro being used. --- components/esp_common/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_common/Kconfig b/components/esp_common/Kconfig index dddb5ca3..fd88fad9 100644 --- a/components/esp_common/Kconfig +++ b/components/esp_common/Kconfig @@ -116,7 +116,7 @@ menu "Common ESP-related" choice ESP_TASK_WDT_TIMEOUT_S prompt "Task Watchdog timeout period (seconds)" - default TASK_WDT_TIMEOUT_15N + default ESP_TASK_WDT_TIMEOUT_15N help Timeout period configuration for the Task Watchdog Timer in seconds. This is also configurable at run time.