Marlin_Firmware/Marlin/watchdog.h

18 lines
520 B
C
Raw Normal View History

2012-06-02 13:44:17 -05:00
#ifndef WATCHDOG_H
#define WATCHDOG_H
2011-12-22 05:38:50 -06:00
#include "Marlin.h"
2011-11-06 08:10:29 -06:00
#ifdef USE_WATCHDOG
// intialise watch dog with a 1 sec interrupt time
void watchdog_init();
// pad the dog/reset watchdog. MUST be called at least every second after the first watchdog_init or avr will go into emergency procedures..
void watchdog_reset();
#else
//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() {};
#endif
2011-11-06 07:58:12 -06:00
#endif