#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) |
|
Definition at line 56 of file main.c. References Clear_prescaler, scheduler(), Wdt_change_enable, Wdt_clear_flag, Wdt_off, and Wdt_stop. 00057 { 00058 #ifndef AVRGCC 00059 Wdt_off(); 00060 #else 00061 wdt_reset(); 00062 Wdt_clear_flag(); 00063 Wdt_change_enable(); 00064 Wdt_stop(); 00065 #endif 00066 Clear_prescaler(); 00067 scheduler(); 00068 }
Here is the call graph for this function: ![]() |