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-CC1310: 误码率工程解调问题

Part Number: LAUNCHXL-CC1310

我在LAUNCHXL-CC1310开发板上烧写了rfPacketErrorRate代码,想用信号分析仪进行解调,遇到了一些问题。

首先在代码中我选择了HSM Mode ,请问该模式在此代码中是使用8FSK调制吗?对应的Symbol Rate是多少?

其次,为了更好找到发送的包,我在tx.c中如下位置修改了包内容,

 pPacket[dataOffset + 0] = packet[dataOffset + 0] = (uint8_t)(seqNumber >> 8);
    pPacket[dataOffset + 1] = packet[dataOffset + 1] = (uint8_t)(seqNumber++);
    uint16_t i;
    for (i = dataOffset + 2; i < config->payloadLength; i++)
    {
       // pPacket[i] = packet[i] = rand();
        pPacket[i] = packet[i] = 0xf0;
    }
,请问这个修改生效吗?

因为我在信号分析仪上没有找到解调出的对应Preamble、sync等码字,请问rfPacketErrorRate工程会对包内数据进行什么处理吗?我该如何成功实现数据的解调工作?