2012-06-02 13:44:17 -05:00
|
|
|
#ifndef WATCHDOG_H
|
|
|
|
#define WATCHDOG_H
|
2012-11-06 05:06:41 -06:00
|
|
|
|
2011-12-22 05:38:50 -06:00
|
|
|
#include "Marlin.h"
|
2011-11-06 08:10:29 -06:00
|
|
|
|
2015-07-31 00:21:18 -05:00
|
|
|
#if ENABLED(USE_WATCHDOG)
|
2014-02-17 04:58:36 -06:00
|
|
|
// initialize watch dog with a 1 sec interrupt time
|
2012-11-06 05:06:41 -06:00
|
|
|
void watchdog_init();
|
2014-02-17 04:58:36 -06:00
|
|
|
// pad the dog/reset watchdog. MUST be called at least every second after the first watchdog_init or AVR will go into emergency procedures..
|
2012-11-06 05:06:41 -06:00
|
|
|
void watchdog_reset();
|
2011-11-06 12:23:08 -06:00
|
|
|
#else
|
2012-11-06 05:06:41 -06:00
|
|
|
//If we do not have a watchdog, then we can have empty functions which are optimized away.
|
|
|
|
FORCE_INLINE void watchdog_init() {};
|
|
|
|
FORCE_INLINE void watchdog_reset() {};
|
2011-11-06 12:23:08 -06:00
|
|
|
#endif
|
2011-11-06 07:58:12 -06:00
|
|
|
|
|
|
|
#endif
|