Other Parts Discussed in Thread: EK-TM4C123GXL
Hello,
I have set a GPIO to falling edge triggered interrupt as follows -
// Enabling TACH input on PA6 as falling edge triggered interrupt (Pull up is on TACh line)
GPIOPinTypeGPIOInput(GPIO_PORTA_BASE, GPIO_PIN_6);
GPIOPadConfigSet(GPIO_PORTA_BASE, GPIO_PIN_6, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_OD);
GPIOIntTypeSet(GPIO_PORTA_BASE, GPIO_PIN_6, GPIO_FALLING_EDGE);
GPIOIntEnable(GPIO_PORTA_BASE, GPIO_PIN_6);
IntEnable(INT_GPIOA);
But once in ~30 samples, a rising edge interrupt is triggered. Attaching a scope shot for that.
Am i missing any configuration steps?
Thanks,
Nihit