I'm using the MSP430FR2355 to receive pulses from twelve IR encoders, some are on, some are off. Some or all arrive at the MSP430 almost simultaneously (within 10's of nanoseconds of each other).
I bring 8 of the signals into Port 1 and the other 4 into Port 2.
I enable the interrupts for each of the twelve signals.
I test the P1IFG register in my Port 1 ISR to see which IR encoder(s) was active and had caused an interrupt.
I do a global interrupt disable when I enter the Port 1 ISR. I enable the global interrupt when I leave and clear the P1IFG, setting it to 0x0000.
After the program leaves the Port 1 ISR, will the the Port 2 ISR be entered if there were interrupts on Port 2 and if Port 2 interrupts were enabled in the P2IE register?