- 1、本文档共3页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
IAR编译问
Error[Pe020]: identifier ccc is undefined C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 63
问题:红色部分没有定义,黄色部分是路径,63是行数。
解决:先定义ccc后使用。
Fatal Error[Lc002]: could not open file C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\..\stm32f10x_flash.icf
问题:找不到黄色路径中的文件。
解决:查找下图中路径设置是否正确。
Warning[Pa084]: pointless integer comparison, the result is always false C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 219
问题:警告条件判断结果一直是假。比如:unsigned char i = 0;if(i 0xFF){}
Error[Pe513]: a value of type int * cannot be assigned to an entity of type char * C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 219
问题:两个类型不一样,不能直接赋值。
解决:
Warning[Pe223]: function spi_config declared implicitly C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 216
问题:红色部分没有声明或在其它地方声明过,但是main.c没有引用。
解决:如果此函数在其它文件声明过,那么在使用前声明下extern void spi_config(void);红色字体要与函数声明时保持一致,或者包含声明函数的头文件,#include xxx.h。
Warning[Pa093]: implicit conversion from floating point to integer C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 220
问题:float类型赋值给int类型。
Warning[Pe047]: incompatible redefinition of macro SINGLE_ROW_NUM (declared at line 27) C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.h 29
问题:相同的宏定义并且定义不同。
Error[Pe029]: expected an expression C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 207
问题:有格式问题,比如多了一个括号。
Error[Pe018]: expected a ) C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 207
Error[Pe067]: expected a } C:\Documents and Settings\Administrator\桌面\ECG1200G-Printer-stm32\user\main.c 271
问题:缺少成对的括号。如
问题: 在main.h中定义了一个变量aaaa,此时由main.c、init.c、printer.c、stm32f10x_it.c中都包含此头文件时,就会出现此重复定义问题。
解决:
声明此变量是main.c文件中的变量,其他*.c文件引用时都是外部变量。
文档评论(0)