#ifdef USE_WATCHDOG #include "watchdog.h" #include #include //=========================================================================== //=============================private variables ============================ //=========================================================================== static volatile uint8_t timeout_seconds=0; void(* ctrlaltdelete) (void) = 0; //does not work on my atmega2560 //=========================================================================== //=============================functinos ============================ //=========================================================================== /// intialise watch dog with a 1 sec interrupt time void wd_init() { WDTCSR = (1<1sec ISR(WDT_vect) { if(timeout_seconds++ >= WATCHDOG_TIMEOUT) { #ifdef RESET_MANUAL LCD_MESSAGEPGM("Please Reset!"); SERIAL_ERROR_START; SERIAL_ERRORLNPGM("Something is wrong, please turn off the printer."); #else LCD_MESSAGEPGM("Timeout, resetting!"); #endif //disable watchdog, it will survife reboot. WDTCSR |= (1<