我在调试C6655的uPP_Isr时候遇到了这个问题,一旦在uPP_Isr中断函数内设置断点进行调试,最终中断函数都会运行到
#ifdef __TI_EABI__
interrupt void _c66x_mask_int8_isr (void)
#else
interrupt void c66x_mask_int8_isr (void)
#endif
{
c66xISRtbl[8]();
}
这个地方停止,无法回到主程序。
而且检查发现c66xISRtbl[8]确实是指向uPP_Isr,请问该如何解决?