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: LAUNCHXL-CC1310: Error Rate Engineering Demodulation Problem

Part Number: LAUNCHXL-CC1310

Hi team:

I have clients who have encountered the following issues:

I burned and wrote the rfPacketErrorRate code on the LAUNCHXL-CC1310 development board, and wanted to use a signal analyzer for demodulation, but encountered some issues.

Firstly, I selected HSM Mode in the code. Is this mode using 8FSK modulation in this code? What is the corresponding Symbol Rate?

Secondly, in order to better locate the sent package, I have modified the package content in the following location in 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;
    }

May I ask if this modification takes effect?

Because I couldn't find the corresponding code words such as Preamble and sync demodulated on the signal analyzer, may I ask if the rfPacketErrorRate project will handle the data inside the package? How can I successfully achieve data demodulation?