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的RSSI瞬时值读取方法

Other Parts Discussed in Thread: CC2530

可否请教下如果不使用在接收数据包的尾部读取RSSI值的方法,对CC2530的RSSI瞬时值进行读取还有其他的方法吗?

如果是在数据包读取时同时读取RSSI的如下:

if (basicRfPacketIsReady())

{ // receive data
      if(basicRfReceive(pRxData, APP_PAYLOAD_LENGTH, &rssi)>0)
    {

       temp_rssi=(0-rssi);
      disrssi[0]=temp_rssi/10+'0';
      disrssi[1]=temp_rssi%10+'0';   

     LCD_disp_char(5,1, disrssi[0]);
     LCD_disp_char(5,2, disrssi[1]);
    }

}

如果想在if (basicRfPacketIsReady())语句之前就能读取到实时的RSSI值应该怎么做呢,非常感谢啦!