Hi all. I am using Arduino IDE and ESP32.
I would like to count the number of WDT events.
Is it possible to read a register that retains this info,.
I will then and add event to a counter (in EEPROM).
I have setup my WDT like below.
#include <esp_task_wdt.h>
#define WDT_TIMEOUT 600
void pat_theDog()
{
/esp_task_wdt_reset();// Reset WDT before times out.
}
Thank you
Regards