Hi
For TI Rtos the priority level in descending order are Hwi, Swi, Tasks, Idle Task.
Let's say I have configured 3 tasks with the same priority i.e. each of my task get an equal time-slicing execution time ( take 1 ms ), suppose task 1 is getting executed, and in between an HWI came so that will preempt my task and HWI handler will get processed( HWI handler execution time is 1 ms ). So after finishing the execution of the HWI handler will my Task 1 will resume or will it switch to task 2?
Also if any of my task execution gets stuck at while(1), what will be the effect on the other remaining task?
Regards
Sudhanshu