Hi:
I have two interrupt, INT_4() is high priority, INT_5() is Low-priority interrupt .
First I let my Program run into INT_5, then the program can not jump to the INT_5, because there is a while(1) in INT_5. Then I another event happens, it can trigger the INT_4(),
But the program don't jump to the INT_4, Why??
interrupt void INT_4()
{
// process
}
interrupt void INT_5()
{
// process
while(1);
}
Best Regards