Page 1 of 1

Interrupt wdt timeout

Posted: Tue Jan 24, 2017 2:36 pm
by f.h-f.s.
Hi all,

When i'm not jtag debugging I get Interrupt wdt timeouts.
I tracked the program counter to "asm("waiti 0");" in freertos_hooks.c:52 called by tasks.c:3293 prvIdleTask.

I thought the register dump would point to the function that was stuck and blocking interrupts. Like the docs describe https://github.com/espressif/esp-idf/bl ... m/wdts.rst

My program isn't inside a loop, it has called vTaskDelay().

I'm not seeing what is not feeding the watchdog timer, any hints on how I can figure out what task is causing the interrupt wdt?

Re: Interrupt wdt timeout

Posted: Wed Jan 25, 2017 9:50 am
by ESP_Sprite
Are you using the very latest master of esp-idf? We had an issue that caused that before, but we fixed it some time ago.

Re: Interrupt wdt timeout

Posted: Wed Jan 25, 2017 10:28 am
by f.h-f.s.
I'm using the VisualGDB esp-idf version.
But it is good to know it is a known issue that has been fixed.
Thanks!