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.

6678的notify中断问题



使用ti提供的ipc notify 例程,在例程中加入其他的中断配置,在中断初始化中有

if (CSL_intcInit (&context) != CSL_SOK)
return -1;

如果将这句话注释掉,notify例程能够正常运行(core0发送中断给core1正常进入中断服务函数,core1发送中断给core0正常进入中断服务函数),但是加上这句话,notify不能正常运行(core0发送中断给core1正常进入中断服务函数,core1发送中断给core0不能正常进入中断服务函数)。

想请问一下CSL_intcInit (&context)会影响notify中断吗?有什么方法使其不受影响。