DSP

CCS 软件使用经验四则

2019-07-13 16:18发布

1.使用CCS3.3 编译TI的28335,产如下警告 warning: entry-point symbol other than "_c_int00" specified:  "code_start" 一种解决方法,不用管它,因为C入口地址最终是由用户的CMD文件覆盖的,警告不影响使用。 二是,在编译选项里面link标签页,把Code Entry Point(-e)编辑框里面的code_start删除,就不会产生该警告了。   2.使用CCS4编译28335 例子程序,错误如下: This project was created using a version of Code Generation tools that is not currently installed: 5.2.1 [C2000]. Please install the Code Generation tools of this version, or migrate the project to one of the supported versions. 解决方法:右击项目,打开属性对话框,选CCS BUILD标签,在 Code Generation tools栏目里面选中 TI V6.0.1即可. 3.使用CCS4编译28335 例子程序,错误如下: CCS4 No rule to make target `clean'. 解决方法:右击项目,打开属性对话框,选Info标签,Text file encodingother,选中UTF-8,问题解决, 然后,再改为原来的Text file encodingInherited from container(GKB),仍可以正确编译   4.使用CCS3.3编译28335,错误如下: can't find input file 'rts2800_fpu32.lib' 解决办法: 在ccs的component manager里边选择Code Composer Studio->build tools->tms320c28xx->选中Texas Instrument C2000 Code generation tools<5.0.0B2> 保存设置退出,重新编译,上面的问题(WARNING: invalid compiler option --float_support=fpu32 (ignored) 和  error:  can't find input file 'rts2800_fpu32.lib') 就不会出现了