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.
您好,我们使用主域的gpio0_11做为中断引脚,但是按照下面代码初始化中断后,中断处理函数一直没有被触发。
可以帮忙看看哪里有问题吗?谢谢。
Intc_Init(); Intc_IntSetSrcType(11U, (uint32_t)CSL_VIM_INTR_TYPE_LEVEL); Intc_IntPrioritySet(11U, 1U, 0U); Intc_IntRegister(11U, (IntrFuncPtr) touchIrqHandle, 0U); Intc_IntEnable(11U); Intc_SystemEnable();
SDK:ti-processor-sdk-rtos-j7-evm-07_03_00_05