You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
277 B
11 lines
277 B
13 years ago
|
#ifndef __WATCHDOGH
|
||
|
#define __WATCHDOGH
|
||
|
#ifdef
|
||
|
/// 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
|