Other Parts Discussed in Thread: ADS131A04,
Tool/software:
Hello,
I have 3 ADS131a04 devices connected daisy chained to my AM623 board; first device in Async interrupt mode and the other two devices in synchronous slave mode. The DRDY pins on all are connected to GPIO MCU_UART0_CTSN (A6). I'm trying to set the pin to trigger an interrupt when DRDY signals data is available. I'm following the SDK example in examples/drivers/gpio/gpio_input_interrupt. My code does:
GPIO_setDirMode(gGpioBaseAddr, pinNum, GPIO_DIRECTION_INPUT);
GPIO_setTrigType(gGpioBaseAddr, pinNum, GPIO_TRIG_TYPE_FALL_EDGE);
GPIO_bankIntrEnable(gGpioBaseAddr, bankNum);
then, in my callback registration function I have this: