how to solve interrupt
Hi,
Currently,when i implemented the ISR strategy of the system, i found that when delt with one sort of interrupt i masked it so that the same interrupt will not overrun the previous one being handled! I re-opened the interrupt after it had been completed, which requires that the hardware shall not overrun the interrupt source when maked,i.e., the interrupt source can generate a normal interrupt request when un-masked although the interrupt source occured during the ISR handling process.
Is this rational?
In fact, in order to realize such mechanis, the hardware interrupt signal is always asseted when the corresponding interrupt source and the mask bit is cleared.
Or if not, how to deal with it?
Thansk in advance!
Thomson