Tool/software: TI-RTOS
hi
i want to implement power management - always connected profile(lpds mode) in my TIRTOS project(RTSC project).
To port the idle profile example to my code what are the steps i should follow??
these are the only lines i found in the documentation
Porting to TI-RTOS
For porting this application on TI-RTOS, please refer to Steps to build a new application on CC3200 with
TI-RTOS: and Notes section on CC32xx_TI-RTOS page. cc_idle_task_pm() is the function needed to be hooked to
the idle task.
To hook the cc_idle_task_pm() to idle task, is it enough to call this function in a task.like below..
void task_1()
{
while(1)
{
cc_idle_task_pm() ;
task_sleep(500);
}
}
... and list the task name in idle funtion user defined part in the .cfg file.
But i dont think that is enough as it gives me error, saying there are unresolved symbols. i have tried to link the paths as in the idle profile example.but it gives me error..
Can you please suggest the correct method to port to my rtsc- TIROS project
Thanks a lot
av