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.

SYSCONFIG: Trying to adapt rfCarrierWave to CC1352P7 for 2.4 GHz and +20 dBm

Part Number: SYSCONFIG
Other Parts Discussed in Thread: CC1352P7

Hi,

I'm currently working with a proprietary board based on a CC1352P7. The +20 dBm PA is used for 2.4 GHz. I'm trying to use CCS and SysConfig to adapt the existing rfCarrierWave sample application in order to make it transmits on 2.4 GHz at +20 dBm with 802.15.4 modulation. 

To do this, I create a new project for the CC1352P7-4 LaunchPad, based on rfCarrierWave, Clang compiler and TI-RTOS7.

Then, with SysConfig:

In RF STACKS > Custom, I unselect Custom PHY Setting, 433 Mhz and select IEEE 802.15.4-2006, 250 kbps, OQPSK, DSSSS = 1.8, 10 dBm.

When I try to build, I get the following error messages:

[33]../rfCarrierWave.c:84:5: error: use of undeclared identifier 'RF_cmdTxTest'
[34]    RF_cmdTxTest.config.bUseCw = 1;
[35]    ^
[36]../rfCarrierWave.c:93:62: error: use of undeclared identifier 'RF_cmdPropRadioDivSetup'
[37]    rfHandle = RF_open(&rfObject, &RF_prop, (RF_RadioSetup*)&RF_cmdPropRadioDivSetup, &rfParams);
[38]                                                             ^
[39]../rfCarrierWave.c:93:36: error: use of undeclared identifier 'RF_prop'
[40]    rfHandle = RF_open(&rfObject, &RF_prop, (RF_RadioSetup*)&RF_cmdPropRadioDivSetup, &rfParams);
[41]                                   ^
[42]../rfCarrierWave.c:98:38: error: use of undeclared identifier 'RF_cmdFs'
[43]        RF_runCmd(rfHandle, (RF_Op*)&RF_cmdFs, RF_PriorityNormal, NULL, 0);
[44]                                     ^
[45]../rfCarrierWave.c:101:38: error: use of undeclared identifier 'RF_cmdTxTest'
[46]        RF_runCmd(rfHandle, (RF_Op*)&RF_cmdTxTest, RF_PriorityNormal, &rfCmdCallback, ( RF_EventCmdAborted | RF_EventCmdPreempted ));
[47]                                     ^
[48]5 errors generated.

What can I do to correct these errors?

Regards,
Pascal