2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-11-06 12:06:41 +01:00
|
|
|
#include "Marlin.h"
|
|
|
|
|
2015-07-31 07:21:18 +02:00
|
|
|
#if ENABLED(USE_WATCHDOG)
|
2012-11-06 13:33:00 +01:00
|
|
|
|
2012-11-06 12:06:41 +01:00
|
|
|
#include "watchdog.h"
|
|
|
|
|
2015-10-13 12:57:36 +02:00
|
|
|
// Initialize watchdog with a 4 sec interrupt time
|
2015-10-03 08:08:58 +02:00
|
|
|
void watchdog_init() {
|
2015-07-31 07:21:18 +02:00
|
|
|
#if ENABLED(WATCHDOG_RESET_MANUAL)
|
2015-10-13 12:57:36 +02:00
|
|
|
// We enable the watchdog timer, but only for the interrupt.
|
|
|
|
// Take care, as this requires the correct order of operation, with interrupts disabled. See the datasheet of any AVR chip for details.
|
2012-11-06 12:06:41 +01:00
|
|
|
wdt_reset();
|
|
|
|
_WD_CONTROL_REG = _BV(_WD_CHANGE_BIT) | _BV(WDE);
|
2012-11-07 12:32:17 +01:00
|
|
|
_WD_CONTROL_REG = _BV(WDIE) | WDTO_4S;
|
2015-07-31 07:21:18 +02:00
|
|
|
#else
|
2012-11-07 12:32:17 +01:00
|
|
|
wdt_enable(WDTO_4S);
|
2015-07-31 07:21:18 +02:00
|
|
|
#endif
|
2012-11-06 12:06:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
2015-04-27 03:44:01 +02:00
|
|
|
//=================================== ISR ===================================
|
2012-11-06 12:06:41 +01:00
|
|
|
//===========================================================================
|
|
|
|
|
2016-12-20 06:43:38 +01:00
|
|
|
// Watchdog timer interrupt, called if main program blocks >4sec and manual reset is enabled.
|
2015-07-31 07:21:18 +02:00
|
|
|
#if ENABLED(WATCHDOG_RESET_MANUAL)
|
2015-10-13 12:57:36 +02:00
|
|
|
ISR(WDT_vect) {
|
|
|
|
SERIAL_ERROR_START;
|
|
|
|
SERIAL_ERRORLNPGM("Something is wrong, please turn off the printer.");
|
|
|
|
kill(PSTR("ERR:Please Reset")); //kill blocks //16 characters so it fits on a 16x2 display
|
|
|
|
while (1); //wait for user or serial reset
|
|
|
|
}
|
|
|
|
#endif //WATCHDOG_RESET_MANUAL
|
|
|
|
|
|
|
|
#endif //USE_WATCHDOG
|