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.

[参考译文] CC2340R5:在专有链接中读取 RSSI

Guru**** 1772095 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/other-wireless-group/other-wireless/f/other-wireless-technologies-forum/1410188/cc2340r5-read-the-rssi-at-a-proprietary-link

器件型号:CC2340R5

工具与软件:

我使用 simplelink_lowpower_f3_sdk_8_10_01_02并构建专有的点对点通信。  
我想读取射频链路的 RSSI、因此我尝试读出回调函数内的值。

但我始终获得值127、表示无效。

我在做什么错?

void echoCallbackRX (RCL_Command * cmd、lrf_events lrfEvents、rcl_events rclEvents)

   int8_t TempRssi;

  if ( lrfEvents.rxOk )
  {
     TempRssi = lrf_readRssi ();

     if (TempRssi < 127)
     {
      RxFctRadioMessage。 RSSI = TempRssi;
     }
  }
}

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好、Andreas

    我希望你做得好。 实际上已经使用 proprf PHY 实现了一个统计功能、它将显示 RSSI (*首先需要成功接收数据包)。  

    typedef 结构 RCL_STATS_GENERIC_t        RCL_StatsGeneric;

    谢谢!
    Alex F