Disable Task watchdog on ESP32-SOLO
Posted: Wed Aug 26, 2020 5:05 pm
Hi,
I am trying to get working my ESP-SOLO module in Arduino IDE, but I face this issue.
The module resets periodically with any program. I could fix it with calling vTaskDelay(10) "randomly" in my code.
What would be the best solution to fix this issue?
Things I tried, but didn't work, they didn't even had ANY effect:
-Setting CONFIG_TASK_WDT_TIMEOUT_S to a "high" value.
-changing CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPUx macros:
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 0
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 0
-Calling esp_task_wdt_delete()
Thank you!
I am trying to get working my ESP-SOLO module in Arduino IDE, but I face this issue.
The module resets periodically with any program. I could fix it with calling vTaskDelay(10) "randomly" in my code.
What would be the best solution to fix this issue?
Things I tried, but didn't work, they didn't even had ANY effect:
-Setting CONFIG_TASK_WDT_TIMEOUT_S to a "high" value.
-changing CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPUx macros:
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 0
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 0
-Calling esp_task_wdt_delete()
Thank you!