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

Questions about application timer

I have few questions that weren't addressed either in the infocenter or in the devzone:

  1. In which way app_timer uses CC registers? Each running timer use one of these registers?
  2. What is the maximum amount of timers running at the same time?
Parents
  • By looking to "\components\libraries\timer\app_timerit looks evident that library uses just one compare register (CC[0]`) and it queues all timers in software queue so it should be able to handle (theoretically) any number of these (as long as you have RAM and pointer widths etc. to manage them).

Reply
  • By looking to "\components\libraries\timer\app_timerit looks evident that library uses just one compare register (CC[0]`) and it queues all timers in software queue so it should be able to handle (theoretically) any number of these (as long as you have RAM and pointer widths etc. to manage them).

Children