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.
工具/软件:TI-RTOS
大家好,
我写这些代码。 但当GPIO被触发时,我无法获得中断。
我该怎么做?
//设置GPIO的中断类型
GPIOIntTypeSet (GPIOA0_BASE,GPIO_PIN_0,GPIO_Bety_Edges);
OSI_InterruptRegister (INT_GPIOA0,(P_OSI_INTR_Entry) GPIOA0_Interrupt,INT_Priority_LVL_1);
//启用中断
GPIOIntEnable (GPIOA0_BASE,GPIO _INT_PIN_0);
1.基于WLAN_station示例的我的项目。 WLAN_station示例是TI-RTOS示例。
2.首先,我遵循 中断示例步骤。 但运行时间长,系统将崩溃。 中断示例是非操作系统示例。