Hello there
I am using two GP timers simultaneously to continuously generate timeout event interrupts. However, I know at some stage they will both assert a timeout interrupt at almost exactly the same time.
Now, according to my understanding, seeing as I have not set any priority levels, this will result in the ISR corresponding to the timeout event that just happened to occur before the other one, running first while the second ISR remains pending and then runs after the first one has been completed. I don't want this to happen, so is there a way I can just clear any possibly pending timeout interrupts so as to prevent the second ISR from running immediately after when the two timeout events happen so close to one another?
Thanks a lot.