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.

CC1352P: Wakeup from Shutdown after time

Part Number: CC1352P

Hi,

I'm using the SimpleLink SDK 6.10.0.29 with the Simple Central Example on a custom Board.

I implemented a real time clock with time and date which will be stored every minute with a timer in the NVS.

When the external power is disconnected, the device should run with an external capacitor to update the realtime clock.
To minimize the current consumption, I would like to use the shutdown mode, when the power is disconnected.
When power is disconnected, the device should go to shutdown mode. Then, the device should wakeup every minute to update the real time clock and go back to shutdown mode.
When external power is available, the device should also wakeup from shutdown.

Here I use the Power_Shutdown() which have a parameter shutdownTime.
I tried to use the parameter, but the device doesn't wakeup.

Is there another possibility to wake up the device from shutdown mode after a period time?

Regards

Thomas

  • Hi

    I am confuced when you say you use the Power_Shutdown() which have a parameter shutdownTime. In Shutdown mode the device can only wake up on Pin interrupt or reset pin.

    Siri

  • Hi Siri,

    yes, if you go to the Power.h, the function Power_Shutdown have two parameters: shutdownState and shutdownTime (see Screenshot below). It looks like, that both parameters are ignored.

    Ok, so that means, waking up from a timer is only possible from Standby and not from Shutdown.
    So I will then use the Standby.

    Thanks

    Regards

    Thomas