This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

related to timer

Hi All, please explain me in understanding the following w.r.t to timers. I am novice in this field and i am trying to understand the 51822 Ble_app_hrs project

C:\Keil_v5\ARM\Device\Nordic\nrf51822\Board\pca10001\s110\ble_app_hrs\arm
  1. is each timer node array linked to user array and operational queue?
  2. how are user array and operational queues linked
  3. In this case, the scheduler is not linked to timer, if i see the code timer_list_insert is called by list_insertions_handler,which is called by timer_list_handler and now the code for timer list handler is as below void SWI0_IRQHandler(void) { timer_list_handler(); } please help me in understanding how this entire thing is linked.i mean at what time is the timers_init called and at what time is the timer_list_handler is called so that i can stitch all pieces for complete understanding of timers. Please help