Does the cla core process tasks sequentially? Parallel processing?
For example, there are tasks 1 and 2.
Task 1 is triggered on 10ms timer interrupt 0.
Task 2 is triggered on 5ms timer interrupt 1.
What happens to the task behavior the moment Timer Interrupt 1 is second, that is, when Timers 1 and 2 are triggered at the same time?
Is it sequential processing according to priority? Are they processed at the same time regardless of priority?
Thanks.