CCS 编译出错:debug assertion failed

时间:2024-04-03 12:08:31

win7 ccs7.0
原来好好的程序,Rebuild 的时候报错
内容如下:
Debug Assertion Failed!
Program:… gram Files\ ti\ ccsv5\ tools\ compiler\ msp430_4.2.1\ bin\ cl430. exe File: isctype.c Line:68
Expression:(unsigned)(c+1)<=256
For information on how your program can cause an assertion failure, see the Visual C++documentation on asserts.
(Press Retry to debug the application)
CCS 编译出错:debug assertion failed
这种情况下,首先将所有的工程全部删除,重新打CCS,如果没有任何提示,则说明 CCS软件没有任何问题,是自己的项目程序有问题,无需重新安装CCS。(我的属于这种情况)
解决办法:
CCS 启动工作空间:改成纯字母(不要带有阿拉伯数字和符号如下划线_、-减号什么的)
工程文件 名字改成纯字母,不要包含任何符号。
问题原因:我之前的项目名称为 P_to_E ,在当时第一次编译的时候,程序各方面是没有问题的,但是1个月没用,之后再用,快去上面的报错。最后改成了 PtoE ,把include 文件和file search 里面的路径做好相应的更改,重新 编译。
CCS 编译出错:debug assertion failed