1、 TI CCS 集成开发环境现在已经完全免费了
CCSv7 已经不需要使用 License了。 如果使用的是 CCSv4 、CCSv5以及 CCSv6 请从 TI 官方网站下载免费的全功能 License。 2、 系统需求
CCSv4/CCSv5/CCSv6[6.1.3 之前版本] 不论是 Windows 系统还是 Linux 都只有32位版本, 可以在32位系统或者64位系统安装及运行。支持 Windows XP/7/8/8.1/10/Linux。
从 CCSv6[6.2] 开始 Linux 版本只提供64位版本,只能在64位 Linux 系统下安装及运行。
从 CCSv7 开始不支持 Windows XP 系统,但是在 Windows 系统下仍然只有 32位版本 可以在 32位或者 64位系统安装及运行。
第二步:找到原文件路径,如:c: est;在GCPV前打勾,GCPV是你原来工程的名字;在Copy project into workspace前打勾。
第三步:打开工程后有两个warnings,一个error.
第四步:先解决掉Error:Product ‘XDAIS’ v0.0 is not currently installed and no compatible version is available. Please install this product or a compatible version. 解决方法:右键项目名,选属性,general 下,选Products选项卡,取消报错的选项,选择上面的一个,OK。再编译,error没有了。如下:
第五步:先解决掉前两个warnings。
**Build-variable ‘XDAIS_CG_ROOT’ cannot be resolved. This project may not build as expected.
Invalid project path: Include path not found (packages ixdais).** 如下图,删掉XDAIS_CG_ROOT路径
删掉后结果
第六步:解决最后一个warnings.这是一个编译器版本的问题。如下图,将编译器版本由TI v6.1.0改为 TI v16.9.3.LTS即可.
Warning:This project was created using a version of compiler that is not currently installed - 6.1.0 [C2000]. Another version of the compiler will be used during build - 16.9.3.LTS. See ‘Help > Install New Software’ and select ‘Code Generation Tools Updates’ to check if this compiler is available through a CCS update. Visit CCS App Center to get the latest compiler support. Or download and install the compiler, then register it with CCS through ‘Preferences > CCS > Build > Compilers’.
好了,再编译,没error,没warnings。