Hi,
I am working on simple application based on task scheduling in CC3200. I have tried with the uart_echo example project of TI RTOS. Task scheduling is not happening it-seems.
I have tried the following scenarios:
I have created 2 tasks with the different priority.I have added System_printf in those 2 tasks to verify whether scheduling happening or not. During startup it came to the first task and after that it was in second task only. It was not switching back to the first task.After adding Task_sleep(), task scheduling is happening.without adding Task_sleep(), task switching will not happen here?
If I give same priority for those 2 tasks also, I am getting the above results.
Is there any thing else I need to add for task scheduling?