#include "config.h"
#include "modules/scheduler/scheduler.h"
#include "lib_mcu/wdt/wdt_drv.h"
#include "lib_mcu/power/power_drv.h"
Include dependency graph for main.c:
Go to the source code of this file.
Functions | |
void | main (void) |
,v
Copyright (c) 2006 Atmel.
Please read file license.txt for copyright notice.
Definition in file main.c.
void main | ( | void | ) |
Definition at line 64 of file main.c.
References Clear_prescaler, scheduler(), Wdt_change_enable, Wdt_clear_flag, Wdt_off, and Wdt_stop.
00065 { 00066 #ifndef AVRGCC 00067 Wdt_off(); 00068 #else 00069 wdt_reset(); 00070 Wdt_clear_flag(); 00071 Wdt_change_enable(); 00072 Wdt_stop(); 00073 #endif 00074 Clear_prescaler(); 00075 scheduler(); 00076 }
Here is the call graph for this function: