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-CC3235SF: Building CC3235SF Project with IAR Workbench v8.50.4 and SysConfig

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

Hi All.

I am having problems building a demo project for the LAUNCHXL-CC3235SF board using IAR Workbench v8.50.4. I was able to pre-build the Simplelink TI-RTOS kernel just fine, but I cannot build any of the demo projects.

c:/ti/sysconfig_1.4.0/sysconfig_cli.bat  <-- I don't have sysconfig_1.4.0 installed, instead I have sysconfig_1.5.0.  I believe that I have to change the $SYSCONFIG_ROOT$ variable, but I don't know where to find it.

c:/ti/simplelink_cc32xx_sdk_4_10_00_07/.metadata/product.json  <-- I cannot find this file locations for where this is referenced.

Can anyone point me in the right direction on how to get a demo to compile using IAR workbench?

Also, is there any documentation on how to uses the SysConfig program to create a project from scratch for IAR workbench? All the existing documentation and videos only show for CCS?

  • I have followed the instruction in the below link. 

    C:\ti\simplelink_cc32xx_sdk_4_10_00_07\docs\simplelink_mcu_sdk\Quick_Start_Guide.html

    Section 6.2.1 says to Update your installation Paths in the imports.mak is provided in the top-level directory of the SDK installation. I have changed the paths to the following:

    XDC_INSTALL_DIR     ?= c:/ti/xdctools_3_61_00_16_core
    SYSCONFIG_TOOL     ?= c:/ti/ccs1010/ccs/utils/sysconfig_1.5.0/sysconfig_cli.bat
    NODE_JS                     ?= c:/ti/ccs1010/ccs/tools/node/node.exe

    FREERTOS_INSTALL_DIR  ?= c:/FreeRTOSv10.2.1_191129

    CCS_ARMCOMPILER    ?= c:/ti/ccs1000/ccs/tools/compiler/ti-cgt-arm_20.2.0.LTS
    GCC_ARMCOMPILER    ?= c:/ti/ccs1000/ccs/tools/compiler/gcc-arm-none-eabi-9-2019-q4-major-win32
    IAR_ARMCOMPILER      ?= c:/Program Files (x86)/IAR Systems/Embedded Workbench 8.4/arm

    However, I still get the following errors:

  • Hi Andrew,

    Please see the SysConfig User's Guide in the SDK docs: http://dev.ti.com/tirex/explore/node?node=APPx9.C-WrwZE7UoNTr6cg__fc2e6sr__LATEST

    You will have to edit your .custom_argvars before you import an example to the workspace.

    Best regards,

    Sarah

  • Hi Sarah.

    Thank you for that. I found the instructions on how to setup IAR and it compiles just find now. It can be found in the below link in the installed SDK directory.

    C:\ti\simplelink_cc32xx_sdk_4_10_00_07\docs\simplelink_mcu_sdk\Using_SysConfig_with_IAR_Workbench.html

    Andrew