Part Number: CC2650
Tool/software: Code Composer Studio
I have this line of code at the end of the main application loop.
Util_startClock(&standbyClock); Semaphore_pend(kSem, BIOS_WAIT_FOREVER);
standbyClock is a one shot timer configured as such.
Util_constructClock(&standbyClock, Standby_clockHandler, 60000, 0, false, NULL);
The idea is to put a minute of sleep between each iteration. standbyClock posts kSem.
I can see that kSem pend puts the MCU to sleep since the current draw goes near zero but the MCU does not wake up after a minute.
Does the sleep mode blocks the one shot timer from firing?