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.

我在用C2000 LaunchPad的开发板调试SCI,程序再等待SCI收的时候经常会跳到INT13_ISR这个中断函数,我在程序里根本没用过这个函数啊!

下面是我的部分程序:DSP_RF_sendData发送完之后,等待SCI收的时候,偶尔会跳转到INT13_ISR这个中断函数,有时候是正常的。请教什么原因呢

DSP_RF_sendData(Startsignalcheck);//中频信号检测命令
//等待射频回执
do
{
// SCI_ProcessRxData();//对接收数据进行分析

}
while(RF_to_DSP_STATUS==BAD);
RF_to_DSP_STATUS=BAD;