Part Number: CC1310
I use 4mbps 8fsk High Speed Mode to communication. RX device config code:
// Setup the High-Speed Rx Command
RF_cmdRxHS.pOutput = &rxStatistics_hs;
RF_cmdRxHS.pQueue = &dataQueue[RFQueue_Rx];
RF_cmdRxHS.maxPktLen = MAX_RX_LENGTH;
RF_cmdRxHS.pktConf.bFsOff = false; /* Keep frequency synth on after command */
RF_cmdRxHS.pktConf.bUseCrc = true; /* Receive and check CRC */
RF_cmdRxHS.pktConf.bVarLen = true; /* Variable length */
RF_cmdRxHS.pktConf.bRepeatOk = false; /* Stop after receiving a single valid packet */
RF_cmdRxHS.pktConf.bRepeatNok = true; /* Go back to sync search after receiving a packet with CRC error */
RF_cmdRxHS.rxConf.bAutoFlushCrcErr = true; /* Discard packets with CRC error from Rx queue */
RF_cmdRxHS.rxConf.bIncludeLen = true; /* Include the received length field in the stored packet */
RF_cmdRxHS.rxConf.bIncludeCrc = false; /* Exclude the received CRC field in the stored packet */
RF_cmdRxHS.rxConf.bAppendStatus = false; /* No status word append to the packet in the Rx queue */
RF_cmdRxHS.rxConf.bAppendTimestamp = true; /* Append RX time stamp to the packet payload */
TX device send some fixed image data ,I use ccs debug found RX devcie recieve data still have error data