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