OS_Sched ()
Examine all tasks, select ready task with highest priority and run it. Should be called from infinite loop in main(). It is recommended to use OS_Run() instead.
Only in main()
None
nothing
void main (void) { OS_Init(); OS_Task_Create(...); for (;;) { OS_Sched (); } }