Firmware/Marlin/watchdog.h

17 lines
394 B
C
Raw Normal View History

2011-11-06 14:58:12 +01:00
#ifndef __WATCHDOGH
#define __WATCHDOGH
2011-11-06 15:10:29 +01:00
#include "Configuration.h"
#ifdef USE_WATCHDOG
2011-11-06 15:10:29 +01: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 14:58:12 +01:00
#else
inline void wd_init() {};
inline void wd_reset() {};
#endif
2011-11-06 14:58:12 +01:00
#endif