Answer:
1. the 3 conditions have been listed below
2. to avoid persistent interrupt, we break any of the 3 conditions.
Step-by-step explanation:
The persistent interrupt occurs when these three conditions below are met.
They are as follows:
1. GIE=1
2. xIE=1
3. xIFT=1
in avoidance of the persistent interrupt from occurring, we break any of these 3 conditions that I have listed above.
in order To break any one of the 3 conditions, we clear the flag that corresponds to the associated
we can also avoid the persistent interrupt occurrence by having the Interrupt Service Routine (ISR) clear maybe one or all of the three bits mentioned above before the ISR terminates, so it wouldn't get called back again. clearing any of the bits will not allow the ISR to be called again.