Other Parts Discussed in Thread: SYSBIOS, ENERGYTRACE
Hi
I want a CC2652R to go into low power mode when no task is running, enabling PowerCC26XX_standbyPolicy in the syscfg file and
const PowerCC26X2_Config PowerCC26X2_config = {
.enablePolicy = true,
.policyInitFxn = NULL,
.policyFxn = PowerCC26XX_standbyPolicy,
.calibrateFxn = PowerCC26XX_calibrate,
.calibrateRCOSC_LF = true,
.calibrateRCOSC_HF = true,
.enableTCXOFxn = NULL
};
is this enough to get the device into Low power mode when calling Event_pend (in kernel/tirtos/packages/ti/sysbios/knl/Event.c)?
Do I have to disable the UART to get it working?
Tomas