This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/MSP-EXP432E401Y: Simple GPIO Callback question; adding a function to the GPIO config structure

Part Number: MSP-EXP432E401Y

Tool/software: TI-RTOS

Hello,

i have a GPIO Interrupt working with the runtime configuration:

   GPIO_init();
    // install Button callback
    //GPIO_setCallback(Board_GPIO_MYBUTTON, gpioButtonFxn0);

    // Enable interrupts
    GPIO_enableInt(Board_GPIO_MYBUTTON);

Wich works well, but how can i add this function to the calllback structure?

GPIO_PinConfig gpioPinConfigs[] = {
// ......
    GPIOMSP432E4_PP2 | GPIO_CFG_IN_PU | GPIO_CFG_IN_INT_RISING,  
// ....

};

/*
 * Array of callback function pointers
 * NOTE: The order of the pin configurations must coincide with what was
 *       defined in MSP_EXP432E401Y.h
 * NOTE: Pins not used for interrupts can be omitted from callbacks array to
 *       reduce memory usage (if placed at end of gpioPinConfigs array).
 */
GPIO_CallbackFxn gpioCallbackFunctions[] = {
    NULL,  /* MSP_EXP432E401Y_USR_SW1 */
    NULL,   /* MSP_EXP432E401Y_USR_SW2 */

    // What TO ADD HERE ? and how to add an index to this callback function?

};

**Attention** This is a public forum