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.

RTOS/CC2640: CC2640 Power Management in Standby

Part Number: CC2640

Tool/software: TI-RTOS

I am trying to implement Power management (in STANDBY) mode for CC2640 running Bluetooth stack.

While in power off (standby) all the tasks are sleep and only wake up by key press interrupt.

I had called the following :

Power_init();
Power_enablePolicy();

GAPRole_TerminateConnection();

// Stop advertising
adv_enabled = FALSE;
GAPRole_SetParameter(GAPROLE_ADVERT_ENABLED, sizeof(uint8_t), &adv_enabled);

Will this be able to put the whole RF-core into sleep mode while it is not doing any "Advertising" ?

Also, any method to wake a Task_sleep ?  So I could put it in sleep and wake by event ?

Thanks for advice

Dilbert