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/CC1350: CC1350 Power management

Part Number: CC1350
Other Parts Discussed in Thread: SYSBIOS, LAUNCHXL-CC1310

Tool/software: Code Composer Studio

Hi,

I am working with the CC1350 Launchpad and I have the following problem with Power Management.

I am running a very simple code to see a low power consumption mode but I do not see the expected results.

The code I running is simply:

while(1) {

       /* Sleep, to let the power policy transition the device to standby */

       sleep(5);

 

 

       /* Read current output value for all pins */

//         currentOutputVal = PIN_getPortOutputValue(hPin);

 

       /* Toggle the LEDs, configuring all LEDs at once */

//        PIN_setPortOutputValue(hPin, ~currentOutputVal);

 

   }

In the while loop I removed the PIN output functions,

and before going into the while loop I removed also the PIN_open() function without any positive result.

This simple program has been loaded in the Launchpad CC1350 board, I removed all the 11 jumpers  (M0 to M11 on P4 header) between the CC1350 side and the debugger interface on the same board.

I powered up the Launchpad board via the 3V3 header P1: the current consumption is about 3.1 mA without any connection to external devices (only the Launchpad)..

I am running with SDK 2.40 version.

How can you explain the problem I see?

Is there any solution for it? And moreover is there any tutorial or reference code with power management examples?

Thanks

Best Regards,

Mario Sandri