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.

CC2530 basic_rf 调试中设置断点后,再也无法进入中断

程序使用basic_rf进行点对点通信。我在使用如下函数:

 if(basicRfPacketIsReady()){
      basicRfReceive(s_pDataBuf, ZRE_PAYLOAD_BUF_LEN, &bRSSI);

      count++;
      ret = 1;
    }

后,全速运行一段时间,发现收到的包数(count)在增加,说明是正常接收的。

       但是我一旦在调试中暂停了程序之后,就再也不能进入RF的接收中断了,同时count也不再增加,请问这是为什么呢?谢谢!