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.

CC1310: Can we stop RX mode if there is nothing on radio?

Part Number: CC1310

Hello,

 Can we stop the radio rx mode if there is nothing on radio? Now we put the radio rx timeout for 30 ms, but we want if there is nothing on radio to stop the rx mode after 4ms. Can we do that some how?

Thanks!

  • You can change the rx Timeout from 30 ms to 4 ms.
    The RX command have an end trigger, given by endTrigger and endTime. If this trigger occurs while the receiver is searching for sync, the operation ends with the status PROP_DONE_RXTIMEOUT. If the trigger occurs while receiving a packet, the action depends on pktConf.endType.
    If pktConf.endType = 0, the packet is received to the end and the operation then ends with PROP_DONE_ENDED as the status. If pktConf.endType = 1, the packet reception is aborted and the operation ends with PROP_DONE_BREAK as the status.

    Siri