2011-11-06 07:58:12 -06:00
|
|
|
#ifndef __WATCHDOGH
|
|
|
|
#define __WATCHDOGH
|
2011-12-22 05:38:50 -06:00
|
|
|
#include "Marlin.h"
|
2011-11-06 12:23:08 -06:00
|
|
|
#ifdef USE_WATCHDOG
|
2011-11-06 08:10:29 -06:00
|
|
|
|
2011-11-06 12:23:08 -06:00
|
|
|
// intialise watch dog with a 1 sec interrupt time
|
|
|
|
void wd_init();
|
|
|
|
// pad the dog/reset watchdog. MUST be called at least every second after the first wd_init or avr will go into emergency procedures..
|
|
|
|
void wd_reset();
|
2011-11-06 07:58:12 -06:00
|
|
|
|
2011-11-06 12:23:08 -06:00
|
|
|
#else
|
2011-11-27 09:04:58 -06:00
|
|
|
FORCE_INLINE void wd_init() {};
|
|
|
|
FORCE_INLINE void wd_reset() {};
|
2011-11-06 12:23:08 -06:00
|
|
|
#endif
|
2011-11-06 07:58:12 -06:00
|
|
|
|
|
|
|
#endif
|