Tool/software: TI-RTOS
Hi sir,
I confused the priority of Task/HWI. I have do some test in my project, The results are shown below:
demo1:
TimerHwiFunc(){
printf("timer Hwi\n");
}
TaskFunc1(){
while();
}
demo2:
TimerHwiFunc(){
printf("timer Hwi\n");
}
TaskFunc1(){
while(){
Task_Sleep(1);
}
}
"Demo1" is not able to access HWI. but "Demo2" can enter HWI.
Why can't the SP go into HWI after the task death loop?