Other Parts Discussed in Thread: OMAPL138
Hi,
I am using OMAPL138 ,BIOS PSP drive and CCS..
I want to use GPIO Bank2_12 (configure this pin as a GPIO) pin as a falling edge trigger interrup. As per GPIO example i configure perfectly.
but as shown in example, we can only register bank (all pins)for interrupt , not a single pin.
//// as per comment ////
//Set the interrupt handler for GPIO2_12_PIN. However we cannot register *
// * interrupts for individual pins in C6748, therefore register interrupt *
// * for the associated bank(BANK2) as a whole
So in my case, i use other peripheral on same bank2 like SPI1.
So when ever my SPI communicate, GPIO interrupt generated. But i only want to consider GPIO2_12 pin interrupt. I didnt find anything in drive documentation , which can read the interrupt status.
How can i use only one pin as a GPIO interrupt without affecting others in bank ?