Hi,
I'm writting a simple test code that uses the aplication timer library (app_timer) to wake up from SystemON Idle mode to SystemOn mode every 1 minute. The idea is to stay 1 minute in SystemOn Idle to save power.
An app_timer, as far as I know, is like a "software" timer that use RTC1 hardware to create multiple instances. Because of that, I wonder if every time my app_timer event handler is called, the library internally "produces" multiple interrupt events from the RTC1. So, the CPU won't be waking up every minute, but multiple times in that minute (because RTC1 events). Is this assumption correct?
And another question related. The BSP uses a app_timer internally. Is this app_timer running constantly, producing the same issue of the question above (in case to be true)?
Thanks and best regards
José Forno