11 lines
95 B
C
11 lines
95 B
C
#include "watchdog.h"
|
|
|
|
void wdt_init(void)
|
|
{
|
|
MCUSR = 0;
|
|
wdt_disable();
|
|
|
|
return;
|
|
}
|
|
|