Advertisement
leobin1989

main function

Jul 11th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. int main(void)
  2. {
  3.     advertising_status = 0;
  4.     // Initialize
  5.     leds_init();
  6.     timers_init();
  7.     ble_stack_init();
  8.     scheduler_init();
  9.     data_init();
  10.  
  11.  
  12.     // Enter main loop
  13.     for (;;)
  14.     {
  15.         app_sched_execute();
  16.         power_manage();
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement