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-CC26X2R1: Sysconfig Error CCS 10.2

Part Number: LAUNCHXL-CC26X2R1
Other Parts Discussed in Thread: SYSCONFIG

Hi,

I'm trying to use sysconfig to configure the board files for my new cc26x2rlp project. However, when I copied the sysconfig file from another example project to my current project folder, I keep getting this error: Cannot specify --board without --product when I double click on the sysconfig file.

I select go back on the error window and try to start from scratch. However, this error still persists. COuld I please get some guidance here?

  • Kartavya,

    SysConfig is dependent on the SDK.  If you go to the build options for the original product there is a section where "manifests" are specified.  Basically these are paths to products like SDK that SysConfig then reads metadata from.

    Usually these are specified using a variable.  The above is from one of the SDK example projects.  That first variable is actually coming from the dependent TI-RTOS project.   When I put my mouse over the ... it shows what the value is and where it is coming from.

    I am not sure how your project is setup to have a dependency on a TI-RTOS project you could add that same variable.

    If everything is in one project then what I would do is to specify the variable for the SDK like this:

    That ${COM_TI_SIMPLELINK_CC13X2_26X2_SDK_SYSCONFIG_MANIFEST} variable resolves to the location of the manifest inside the SDK.  If you later upgrade the SDK used by the project then that variable will automatically update.

    Regards,
    John

  • Thanks a lot! Will try this out