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: CC1310 wakeup time of idle mode to rx mode

Part Number: LAUNCHXL-CC1310
Other Parts Discussed in Thread: CC1310, CC1200

Hi Experts,

Is there document to introduce below parameters for CC1310. I found in my code from idle to rx, the time will spend about 1.2ms, it is too slow. How to speed up this wakeup time. In my application, I don't need RF standby, it can  be always working actively. so I believe 1.2ms is not reasonable. Could you show me the method or code? Thanks!  

  • Which chip are you using? The headline is about CC1310 but the datasheet screenshot is for CC1200?

    But you can set the chip to always be in RX if that solves your problem. 

  • Hi 

    I am using cc1310, previously I have used CC1200, CC1200 can provide the details rf parameters, but for CC1310, I can't see the details in datasheet or userguider. Thanks! 

  • We do not provide datasheet numbers for this, as the timing might change if patches changes etc.

    From Standby to active RX it takes around 1.6 - 1.7 ms and there are no magic settings that can be used to decrease this number.

    The plot below show the following:

    while(1)
    {
        RF_runCmd(rfHandle, (RF_Op*)&RF_cmdPropRx, RF_PriorityNormal, &callback, RF_EventRxEntryDone);
        RF_runCmd(rfHandle, (RF_Op*)&RF_cmdPropRx, RF_PriorityNormal, &callback, RF_EventRxEntryDone);
        RF_yield(rfHandle);
        sleep(1);
    }

    X1-X2 is when coming from Stadnby and is around 1.7 ms. 

    X3-X4 is when RX is started again after the first RX has ended. It takes around 250 us.

    If current consumption is not an issue, you can set both repeat modes to 1 to keep the device in constant RX:

    RF_cmdPropRx.pktConf.bRepeatOk = 1;
    RF_cmdPropRx.pktConf.bRepeatNok = 1;

    If you run the code above, but dissallows standby, the X1-X2 time is reduced to around 1.3 ms.

    Siri

  • hI Siri,

    Thanks!