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.

RTOS/CC1310: Constant carrier mode for CC1310, or way to increase transmit duty cycle

Part Number: CC1310
Other Parts Discussed in Thread: CC1101

Tool/software: TI-RTOS

Hello,

I'm currently developing on the CC1310 launch pad and the goal is a simplex RF link running at the highest possible speed. One CC1310 is always transmitting and the other receiving.

I'm trying to optimise the RF air time, or even have the transmitting CC1310 left in a constant carrier mode. To illustrate, I'm using the CC1310 rfPacketTx example in proprietary packet mode and I post two commands in back-to-back, however the CC1310 appears to turn off the transmitter between commands.

cmdHandle = RF_postCmd(rfHandle, (RF_Op*)&RF_cmdPropTx, RF_PriorityNormal, NULL, 0);
cmdHandle = RF_postCmd(rfHandle, (RF_Op*)&RF_cmdPropTx, RF_PriorityNormal, NULL, 0);

I have this transmitting into my measurement device and its showing two transmit events:

Is there a way using the SDK or driver to eliminate the pause between transmissions? Or perhaps have the CC1310 in a constant carrier mode where it simply sends preamble when there are no RF commands to be executed?

Thanks,

Ben