Hi,
I'm now under my first development project based on CC2650STK with DevPack, but I have some problems with Power managment.
In my cfg I have:
var Power = xdc.useModule('ti.sysbios.family.arm.cc26xx.Power');
Power.idle = true;
Power.policyFunc = Power.standbyPolicy;
Power.calibrateRCOSC = false;
In my main:
#include <ti/sysbios/family/arm/cc26xx/Power.h>
#include <ti/sysbios/family/arm/cc26xx/PowerCC2650.h>
But I can't find any AppNote according to power managment in TI-RTOS, I have simple main file which toggle led in task and goes to sleep for 60 secs, but the power consumption is 3.5mA during sleep (with LED off). Is there any documents according power managment?
And about power analyzing is there any debugger with energy trace for simple link MCUs?
Best regars