This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/Marlin/watchdog.h

15 lines
346 B
C
Raw Normal View History

2012-06-02 20:44:17 +02:00
#ifndef WATCHDOG_H
#define WATCHDOG_H
2011-12-22 12:38:50 +01:00
#include "Marlin.h"
2015-10-13 12:57:36 +02:00
#include <avr/wdt.h>
2011-11-06 15:10:29 +01:00
2015-10-13 12:57:36 +02: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 14:58:12 +01:00
#endif