Dear,
I have a question. I#m using a watchdog timer this way
#include <avr/wdt.h>
void setup(){
wdt_enable(WDTO_2S);
}
void loop(){
//do stuff here
wdt_reset();
}
Problem: When the "stuff" is taking too long and the wdt is not served, so the CPU is not rebooting, but its hanging an the LED "L" on the pcb is blinking fastly.
What did I wrong? Thank you very much