Blinker
V1.0
Blinker
|
00001 #include "Application.h" 00002 #include "Led.h" 00003 #include "Timer.h" 00004 00005 void Application_init(void) 00006 { 00007 Led_init(); 00008 Timer_init(); 00009 } 00010 00011 void Application_run(void) 00012 { 00013 Led_on(); 00014 Timer_wait(500); 00015 Led_off(); 00016 Timer_wait(1500); 00017 }