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.

LAUNCHXL-CC3235SF: Impossible to enter low power mode

Part Number: LAUNCHXL-CC3235SF

Hi,

I try to enter low power mode but I still measure mA current what ever I do...

The CC3235 is not WiFi connected to anything. My example base is the network terminal.

I do that:

    GPIO_clearInt(1);

    /* Disable the interrupt */
    GPIO_disableInt(1);


    memset(&PmPolicyParams,0,sizeof(SlWlanPmPolicyParams_t));
    PmPolicyParams.MaxSleepTimeMs = 100; //IOTLP_MIN_DURATION_IN_MSEC; //min sleep duration in mSec
    sl_WlanPolicySet(SL_WLAN_POLICY_PM , SL_WLAN_IOT_LOW_POWER_POLICY, (uint8_t *)&PmPolicyParams, sizeof(PmPolicyParams));

I have also tried the other modes but nothing happens. Any idea???

Thanks a lot,

Pierre-Yves

  • Hello,

    If you configured and enabled the power policy the device will automatically enter low power mode when all tasks on the MCU are sleeping. If you are just trying to test low power mode I would recommend using the power measurement example instead of the network terminal example.

    Jesu