we want use CC1310 Transmit carrier mode, use below code can send carrier, but what cmd can be stop? we use " RF_cancelCmd(rfHandle, result, 0);" in other task , can not stop.
RF_Params rfParams;
RF_Params_init(&rfParams);
/* Explicitly configure CW (1) or Modulated (0). Default modulated mode is PRBS-15. */
RF_cmdTxTest.config.bUseCw = 1;
/* In order to achieve +14dBm output power, make sure .txPower = 0xa73f, and
that the define CCFG_FORCE_VDDR_HH = 0x1 in ccfg.c */
/* Request access to the radio */
rfHandle = RF_open(&rfObject, &RF_prop, (RF_RadioSetup*)&RF_cmdPropRadioDivSetup, &rfParams);
/* Send CMD_FS and wait until it has completed */
RF_runCmd(rfHandle, (RF_Op*)&RF_cmdFs, RF_PriorityNormal, NULL, 0);
/* Send CMD_TX_TEST which sends forever */
RF_runCmd(rfHandle, (RF_Op*)&RF_cmdTxTest, RF_PriorityNormal, NULL, 0);