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: Question about dynamic setting of working parameters in WOR mode

Part Number: CC1310
Other Parts Discussed in Thread: CC1352P

Tool/software: TI-RTOS

Hi Team,

I have some questions about parameter settings.

1.Can the latest Smart_stuio support changing the low rate in WOR mode? Please provide some information if you can.

2.How to dynamically modify the TX power? Can I call RF_setTxPower() directly? If I can, I want to get all the TX power levels and their list.

3.How to dynamically modify the working frequency parameters?Can I do this:

if(events & RADIO_EVENT_MODIFY_Freq)
{
  * Set the frequency */
  RF_cmdFs.frequency = (uint16_t)(ui32Frequency / 1000000);
  RF_cmdFs.fractFreq = (uint16_t) (((uint64_t)ui32Frequency -
 ((uint64_t)RF_cmdFs.frequency * 1000000)) * 65536 / 1000000);

  /* Run command */
  RF_EventMask result = RF_runCmd(rfHandle, (RF_Op*)&RF_cmdFs,
  RF_PriorityNormal, 0, 0);

  if (result & RF_EventLastCmdDone)
  {
   status = EasyLink_Status_Success;
  }
}

Hopefully for your answer!