2016-03-25 06:19:46 +00:00
/**
2016-03-24 18:01:20 +00:00
* Marlin 3 D 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/>.
*
*/
2017-09-24 04:25:28 +00:00
# ifdef __AVR__
2017-06-17 23:36:10 +00:00
2017-09-06 11:28:32 +00:00
# include "../../inc/MarlinConfig.h"
2012-11-06 11:06:41 +00:00
2015-07-31 05:21:18 +00:00
# if ENABLED(USE_WATCHDOG)
2012-11-06 12:33:00 +00:00
2017-06-17 23:36:10 +00:00
# include "watchdog_AVR.h"
2012-11-06 11:06:41 +00:00
2017-09-06 11:28:32 +00:00
# include "../../Marlin.h"
2017-08-31 22:30:43 +00:00
2017-10-29 23:30:03 +00:00
// Initialize watchdog with 8s timeout, if possible. Otherwise, make it 4s.
2015-10-03 06:08:58 +00:00
void watchdog_init ( ) {
2017-10-29 23:30:03 +00:00
# if ENABLED(WATCHDOG_DURATION_8S) && defined(WDTO_8S)
# define WDTO_NS WDTO_8S
# else
# define WDTO_NS WDTO_4S
# endif
2015-07-31 05:21:18 +00:00
# if ENABLED(WATCHDOG_RESET_MANUAL)
2015-10-13 10:57:36 +00:00
// We enable the watchdog timer, but only for the interrupt.
2017-10-29 23:30:03 +00:00
// 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 11:06:41 +00:00
wdt_reset ( ) ;
2017-11-02 22:47:20 +00:00
cli ( ) ;
2012-11-06 11:06:41 +00:00
_WD_CONTROL_REG = _BV ( _WD_CHANGE_BIT ) | _BV ( WDE ) ;
2017-11-02 22:47:20 +00:00
_WD_CONTROL_REG = _BV ( WDIE ) | ( WDTO_NS & 0x07 ) | ( ( WDTO_NS & 0x08 ) < < 2 ) ; // WDTO_NS directly does not work. bit 0-2 are consecutive in the register but the highest value bit is at bit 5
// So worked for up to WDTO_2S
sei ( ) ;
wdt_reset ( ) ;
2015-07-31 05:21:18 +00:00
# else
2017-11-02 22:47:20 +00:00
wdt_enable ( WDTO_NS ) ; // The function handles the upper bit correct.
2015-07-31 05:21:18 +00:00
# endif
2017-11-02 22:47:20 +00:00
//delay(10000); // test it!
2012-11-06 11:06:41 +00:00
}
//===========================================================================
2015-04-27 01:44:01 +00:00
//=================================== ISR ===================================
2012-11-06 11:06:41 +00:00
//===========================================================================
2016-12-20 05:43:38 +00:00
// Watchdog timer interrupt, called if main program blocks >4sec and manual reset is enabled.
2015-07-31 05:21:18 +00:00
# if ENABLED(WATCHDOG_RESET_MANUAL)
2015-10-13 10:57:36 +00:00
ISR ( WDT_vect ) {
2017-11-02 22:47:20 +00:00
sei ( ) ; // With the interrupt driven serial we need to allow interrupts.
2017-06-09 15:51:23 +00:00
SERIAL_ERROR_START ( ) ;
2017-11-02 22:47:20 +00:00
SERIAL_ERRORLNPGM ( " Watchdog barked, please turn off the printer. " ) ;
kill ( PSTR ( " ERR:Watchdog " ) ) ; //kill blocks //up to 16 characters so it fits on a 16x2 display
2015-10-13 10:57:36 +00:00
while ( 1 ) ; //wait for user or serial reset
}
2017-05-09 17:35:43 +00:00
# endif // WATCHDOG_RESET_MANUAL
2015-10-13 10:57:36 +00:00
2017-05-09 17:35:43 +00:00
# endif // USE_WATCHDOG
2017-09-24 04:25:28 +00:00
# endif // __AVR__