Hi,
Suppose I have a high priority task - taskA() and three equal lower priority tasks -task1(),task2() and task3(). Each is coded as :
while(1)
{
...do_something();
Task_yield();
}
Am I correct in assuming that these will run as below:
taskA,task1,taskA,task2,taskA,task3 .... and so on? Also once a task yields does the next task run immediately or is synchronized to some internal
clock of RTOS?
Regards