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: change tx.Power for HSM with RfErrorRate Example

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

Hi,

we want to change the tx.power to -10dBm for testing the HSM with our CC1310 Launch-Pad.

At the moment we have 13/14dBm when we send packets with the example.

How can we change this? 

Thanks for your help!

  • Hi,

    You can use the RF_setTxPower Api to set the tx power. 

    Please add these lines before you post the Tx command. 

                RF_TxPowerTable_Value Value;
                Value = RF_TxPowerTable_findValue((RF_TxPowerTable_Entry *)RF_PROP_txPowerTable, -10);
                RF_Stat setPowerStatus1 = RF_setTxPower(rfHandle, Value);

    This should set the tx power to -10dBm.

    Regards,

    Sid