This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/CC2650: Problem with MCU waking up from Standby mode

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?