Hi,
Is there a way to put the host test app to sleep forever? We have a special hci command to put the app to sleep for verifying sleep current. I have verified there are no power constraints and have set all the tasks to inactive. Below is my code:
Task_setPri(Task_handle(&npiTaskStruct), -1);
Task_setPri(Task_handle(&htaTask), -1);
NPITLUART_close();
//ICall task
Task_setPri(task, -1);
Task_setPri(ti_sysbios_knl_Task_getIdleTask(), -1);
Power_releaseConstraint(Power_SB_DISALLOW);
Power_releaseConstraint(Power_IDLE_PD_DISALLOW);
Power_sleep(ti_sysbios_family_arm_cc26xx_Power_STANDBY, NULL, NULL);
Thanks in advance,
Ben