Other Parts Discussed in Thread: CONTROLSUITE
Dear all,
on my F28M36 I want to use GPIO15 (PB7) as an external NMI interrupt. I am not sure how to initalise this interrupt in my software.
I did:
GPIOPinUnlock(GPIO_PORTB_BASE, GPIO_PIN_7);
GPIOPinConfigure(GPIO_PB7_NMI); // NMI
GPIOPinLock(GPIO_PORTB_BASE, GPIO_PIN_7);
to unlock, change the pin type and lock again.
Additionally I registered the interrupt with:
IntRegister(FAULT_NMI, MasterNMI);
with my MasterNMI function. Unfortately this function is never reached.
I want an NMI interrupt when PB7 drops from 3.3V to 0V.
Any help is very welcome. Thanks a lot in advance!