I have two inputs on PORTF that are configured to generate interrupt 0 and interrupt 1 on rising edge. It seems that interrupt 0 can also trigger interrupt 1. I tried all kinds of things, but my current work-around is to check the actual pin level upon entering interrupt handler and abort if the pin isn't high.
Anybody else see anything similar or have a suggestion?
init code:
PORTCFG.MPCMASK = 0x00; PORTF.INTCTRL = 0x0f; PORTF.INT0MASK = 0x01; PORTF.INT1MASK = 0x02; PORTF.PIN0CTRL = 0x99; PORTF.PIN1CTRL = 0x99;