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.

CCS/LAUNCHXL-CC2640R2: Can not build to CC2640R2

Part Number: LAUNCHXL-CC2640R2

Tool/software: Code Composer Studio

I have some problem

Can not build to CC2640R2

CCS Version : 7.0

Simple link Path : C:\ti\simplelink_cc2640r2_sdk_1_00_00_22

work Space Path : D:\project\...\CC2640r2\workspace

<Make Error MSG>

<Proejct Tree>

<Properties>

  • Hello
    I get the error also:

    #1965 cannot open source file "ti/devices/cc26x0/driverlib/ioc.h"

    The issue is that the above path does note exist. The correct path is:
    "ti/devices/cc26x0r2/driverlib/ioc.h"

    Looks like a bug with the header file CC2640R2_LAUNCHXL.h on line 54. It is trying to include the header file with the wrong path. If you change it to the below:
    #include <ti/devices/cc26x0r2/driverlib/ioc.h>

    That will work

    ki