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: How to register GPIO Interrupt in CC3200 TI-RTOS?

Tool/software: TI-RTOS

Hi All,

I write those code. But I can't get interrupt when GPIO has been trigger.

How can I do?

// Set Interrupt Type for GPIO

GPIOIntTypeSet(GPIOA0_BASE, GPIO_PIN_0, GPIO_BOTH_EDGES);

osi_InterruptRegister(INT_GPIOA0,(P_OSI_INTR_ENTRY)GPIOA0_Interrupt, INT_PRIORITY_LVL_1);

// Enable Interrupt

GPIOIntEnable(GPIOA0_BASE,GPIO_INT_PIN_0);