2012-06-02 18:44:17 +00:00
|
|
|
#ifndef WATCHDOG_H
|
|
|
|
#define WATCHDOG_H
|
2012-11-06 11:06:41 +00:00
|
|
|
|
2011-12-22 11:38:50 +00:00
|
|
|
#include "Marlin.h"
|
2015-10-13 10:57:36 +00:00
|
|
|
#include <avr/wdt.h>
|
2011-11-06 14:10:29 +00:00
|
|
|
|
2015-10-13 10:57:36 +00:00
|
|
|
// Initialize watchdog with a 4 second interrupt time
|
|
|
|
void watchdog_init();
|
|
|
|
|
|
|
|
// Reset watchdog. MUST be called at least every 4 seconds after the
|
|
|
|
// first watchdog_init or AVR will go into emergency procedures.
|
|
|
|
inline void watchdog_reset() { wdt_reset(); }
|
2011-11-06 13:58:12 +00:00
|
|
|
|
|
|
|
#endif
|