Can anyone verify if the GPIO interrupt API works on the AM335x BSP?
I have something like:
GPIOSetMode(pDevice->hGPIO, pDevice->GPIOIrq1, GPIO_DIR_INPUT|GPIO_INT_HIGH_LOW);
which works just fine on my OMAP35xx device/BSP but does not on my AM335x platform/BSP.
I can see the GPIO line toggeling and I can read the GPIO status and also see it toggeling but I never get the interrupt triggered internally.
I tried both level and edge triggering.