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.

TMS320F280049C: CCS v12 cannot load a projectspec file

Part Number: TMS320F280049C

Tool/software:

Hi

I have a project that uses .projectspec file (see the attachment), but when I import the project, the project file doesn't appear at the dialog file.

I think there are somethings wrong in the.projectspec file, can anyone specify what's wrong in the project file?

Thanks,

Jiakai

Test Timers (C code).zip 

  • I found the reason:

    I had put  -I\"C:/Altair/Embed2025.1_64/cg/include\" in compiling attributes, since the path may have spaces so i added "", that causes project import issue.

    I have also tried on v11.2 and v20, all of them gave me the same result. if I remove this attribute, the project file can be imported.

    I will try to define it as EmbedInc, then use -I${EmbedInc} to address this issue.

  • -I${EmbedInc} is not supported in projectspec project, the correct way is to use " to replace double quotation mark. see below:

    -I\"C:/Altair/Embed2025.1_64/cg/include\"

    to 

    -I"C:/Altair/Embed2025.1_64/cg/include"