Hi Guys - did a bunch of searches about the bug with the mega 2560 watchdog and bootloader versions.
My Mega is from 2014 and understand that it could still have an issue due to the chip it shipped with?... would this code I have on my R3 work if I were going to give it a go on my mega? Or am i way off? (the risk could be a bricked mega)
#include <avr/wdt.h>
void setup()
{
// Watch dog Set up
wdt_disable();
delay(2L * 1000L);
wdt_enable(WDTO_4S);
// End Watch dog Setup
}
void loop()
{
my code here
wdt_reset(); // feed the dog
}
thanks in advance
AG