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.

[参考译文] LAUNCHXL-CC1352P:如何使用回波的 TX_ nortos 和 RX_nortos 完成数据传输和接收信号强度返回?

Guru**** 2482105 points


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

https://e2e.ti.com/support/wireless-connectivity/sub-1-ghz-group/sub-1-ghz/f/sub-1-ghz-forum/1244097/launchxl-cc1352p-how-to-use-the-tx_-nortos-and-rx_-nortos-of-echo-to-complete-the-return-of-data-transmission-and-receive-signal-strength

器件型号:LAUNCHXL-CC1352P

您好!

如何在 RX 接收到电流数据后返回其接收到的信号强度值、并根据 TX 接收到的信号强度值切换到输出端口值的0/1翻转?

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

    不确定我是否理解您的问题。

    接收到的数据包的 RSSI 可以从统计信息中读取  

    static rfc_propRxOutput_t rxStatistics;
    
    RF_cmdPropRx.pOutput   = (uint8_t*)&rxStatistics;

    也可以直接从数据条目

    rf_cmdPropRx.rxConf.bAppendRssi = 0x1

    使用 GPIO 驱动程序设置 GPIO:

    GPIO.h 文件参考(TI.com)

    Siri

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

    谢谢你,Siri!

    这对我们非常有帮助。