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.

RTOS/CC1352R: Too high current consumption in Standby mode CC1352R

Part Number: CC1352R

Tool/software: TI-RTOS

Hello,

I am developing an Ultra Low Power project which has to sample 2 SPI sensors at 20 Hz with CC1352R. For power evaluation I am starting from an empty TI-RTOS based project with the adding of only the Sensor Controller at 20 Hz which, for now, is doing nothing more than sending an interrupt every 40 sec to the main CPU. 

since the main loop while(1) contains only a sleep(1) instruction, I suppose to have a standby current consumption, but the measurement with an oscilloscope gives 600 uA (more similar to the Idle one)

the power polocy is explictly called in main_tirtos.c, just after Board_init():

Power_setPolicy(PowerCC26XX_standbyPolicy);
Power_enablePolicy();

how can I reduce the this current consumption? Is my device actually going in standby mode?

thanks in advance