How to compile a Code Composer project that was created using a different version of the code generation tools?

I have a Code Composer project that I received from a friend. When I try to create it, I get the following error message:

This project was created using a version of the code generation tools that are not currently installed: 6.1.12 [C6000]. Please set the Generation Tools code for this version or transfer the project to one of the supported versions.

How to transfer the project to my version?

+6
code-generation texas-instruments code-composer
source share
2 answers

You should be able to crack it - the project file is in plain text.

Open the file, compare it with the project file created with your version. Change any differences explicitly related to versioning to look like your own file.

Alternatively, simply create a new project with your IDE, then manually add all the source files listed in the friend's project file.

+3
source share
+1
source share

All Articles