reformating and some minor bugs/things found on the way.

This commit is contained in:
Bernhard Kubicek
2011-11-06 19:23:08 +01:00
parent 900e0c9bf2
commit 1d171e9e52
17 changed files with 1204 additions and 1192 deletions

View File

@ -1,13 +1,16 @@
#ifndef __WATCHDOGH
#define __WATCHDOGH
#include "Configuration.h"
//#ifdef USE_WATCHDOG
#ifdef USE_WATCHDOG
/// 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();
// 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();
//#endif
#else
inline void wd_init() {};
inline void wd_reset() {};
#endif
#endif