单片机
返回首页

ICC错误集锦,看懂ICC AVR的报错

2016-10-18 来源:eefocus

新手用ICC编程的时候,经常会出现一些错误,现在将常见的错误报告整理如下。这里的一些错误是我为了展示而故意制造的,欢迎你提供你遇到的错误。排名不分先后:

一、正常编译通过

CODE:

C:\icc\bin\imakew -f main.mak

  iccavr -c -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced D:\桌面\实验教程\LED应用\霓虹灯\main.c

  iccavr -o main -LC:\icc\lib\ -g -ucrtatmega.o -bfunc_lit:0x54.0x4000 -dram_end:0x45f -bdata:0x60.0x45f -dhwstk_size:16 -beeprom:1.512 -fihx_coff -S2 @main.lk   -lcatmega

Device 1% full.

Done.

[Copy to clipboard]

这是我们最想看到的了,万事大吉。

二、工程中未加入.C文件

CODE:

C:\icc\bin\imakew -f main.mak

  iccavr -o main -LC:\icc\lib\ -g -ucrtatmega.o -bfunc_lit:0x54.0x4000 -dram_end:0x45f -bdata:0x60.0x45f -dhwstk_size:16 -beeprom:1.512 -fihx_coff -S2 @main.lk   -lcatmega

unknown file type @main.lk, passed to linker

!ERROR unknown file type '@main.lk'

C:\icc\bin\imakew.exe: Error code 1

Done: there are error(s). Exit code: 1

[Copy to clipboard]

解决办法:将你的程序加入工程中,可以右键程序区>>ADD to project

三、程序没有后缀名,或者后缀名不正确。

CODE:

C:\icc\bin\imakew -f main.mak

C:\icc\bin\imakew.exe: 'main' is up to date

Done.

[Copy to clipboard]

这是一个很难理解的错误,它是由工程中的程序文件没有后缀名造成的。

解决办法:将原有文件移出工程,将文件的后缀名改为.C,然后再加入工程中。

四、没有main函数

CODE:

C:\icc\bin\imakew -f main.mak

  iccavr -c -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced D:\桌面\实验教程\LED应用\霓虹灯\main.c

  iccavr -o main -LC:\icc\lib\ -g -ucrtatmega.o -bfunc_lit:0x54.0x4000 -dram_end:0x45f -bdata:0x60.0x45f -dhwstk_size:16 -beeprom:1.512 -fihx_coff -S2 @main.lk   -lcatmega

!ERROR file 'crtatmega.o': undefined symbol '_main'

C:\icc\bin\imakew.exe: Error code 1

Done: there are error(s). Exit code: 1

[Copy to clipboard]

解决办法,编写程序主函数MAIN。

五、没有选择目标芯片出现如下错误:

CODE:

C:\icc\bin\imakew -f main.mak

  iccavr -c -IC:\icc\include\ -e -l -g -Wa-W D:\桌面\实验教程\LED应用\霓虹灯\main.c

  iccavr -o main -LC:\icc\lib\ -g -Wl-W -bfunc_lit:0.0x2000 -dram_end:0x25f -bdata:0x60.0x25f -dhwstk_size:16 -beeprom:1.512 -fihx_coff -S2 @main.lk

!E C:\icc\lib\crtAVR.o(41): Code address 0 already contains a value

!E C:\icc\lib\crtAVR.o(41): Code address 0x1 already contains a value

C:\icc\bin\imakew.exe: Error code 1

Done: there are error(s). Exit code: 1

[Copy to clipboard]

解决办法:project>>Options>>target>>device configuration 选择合适的芯片。

六、缺少分号

CODE:

C:\icc\bin\imakew -f main.mak

  iccavr -c -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced D:\桌面\实验教程\LED应用\霓虹灯\main.c

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(52): unrecognized statement

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(53): syntax error; found `}' expecting `;'

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(53): syntax error; found `end of input' expecting `}'

C:\icc\bin\imakew.exe: Error code 1

C:\icc\bin\imakew.exe: 'main.o' removed.

Done: there are error(s). Exit code: 1

[Copy to clipboard]

上面的报告说明了第52行缺少一个分号,预期分号的地方出现了“}”。

解决方法,在52行末尾添加分号。

类似的有:缺少}的报错

CODE:

C:\icc\bin\imakew -f main.mak

  iccavr -c -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced D:\桌面\实验教程\LED应用\霓虹灯\main.c

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(55): illegal statement termination

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(55): skipping `void'

!W D:\桌面\实验教程\LED应用\霓虹灯\main.c(55):[warning] calling function without prototype may cause errors

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(56): syntax error; found `{' expecting `;'

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(57): syntax error; found `end of input' expecting `}'

C:\icc\bin\imakew.exe: Error code 1

C:\icc\bin\imakew.exe: 'main.o' removed.

Done: there are error(s). Exit code: 1

[Copy to clipboard]

七:变量没有定义

CODE:

C:\icc\bin\imakew -f main.mak

  iccavr -c -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced D:\桌面\实验教程\LED应用\霓虹灯\main.c

!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(48): undeclared identifier `i'

C:\icc\bin\imakew.exe: Error code 1

C:\icc\bin\imakew.exe: 'main.o' removed.

Done: there are error(s). Exit code: 1

[Copy to clipboard]

解决办法:在程序开始前添加变量定义,比如unsigned char i;注意,定义变量要在函数的最前面进行,及在进行计算操作之前定义所有变量。

欢迎你发布你遇到的错误和解决方法,或者你遇到的错误还没解决的。

八、在编译时总是不能生成COF文件,不能进行调试

解决办法:在ICCAVR编译环境中,进入Project -> Option -> Compiler中在Output format区选COFF/HEX格式

九、请指点一下: 
我的程序出现下列错误提示,是不是我什么地方设置错了呀。 

CODE:

D:\icc\bin\imakew -f tex.mak 
  -lstudio -lfpavr 
want size 346 
lo 3910 hi 4096 size 187 
!E (37): area 'text' not large enough 
D:\icc\bin\imakew.exe: Error code 1 
Done: there are error(s). Exit code: 1 
一点错误那行的时候就出来一个提示框,但没有移到某一行上去。。。。 
ans1:还没有确切的解释,可能原因:应该是定义的数组过大,减小数组的数量应该可以了
ans2:这是超过编译空间了,你可以到压缩下代码,project>options>compiler,选择Enable code compression或者只有优化代码了
十:无意中又发现一个:

too many arguments to `delay_1ms'

问题原因,函数的参数太多,比如上面一个定义的是delay_1ms(void),我确用了delay_1ms(1);改为delay_1ms();就好了。
十一、!ERROR can't open file '\lib\iccavr\libsliccatmega-m.a'

刚才问了一下人,新建一个工程,然后把所有的C文件都导入里面,就没有的问题了,剩下一些语法错误。
十二、ICC7 的代码大小限制的问题,DEMO版超过4K不能编译。
D:\PROGRA~1\iccv7avr\bin\imakew -f mytest.mak
D:\PROGRA~1\iccv7avr\bin\imakew.exe: Couldn't open mytest GetLastError() = 5
Done: there are error(s). Exit code: 1
(斑竹,我后来发现这好像是因为ICC编译生成的某些文件有错误,把ICC生成的文件都删掉,重新建立一个project,重新选择Target,重新编译就好了)
十三、
CODE:

iccavr -o main -LD:\avr\icc\lib\ -g -ucrtatmega.o -bfunc_lit:0x8c.0x10000 -dram_end:0x10ff -bdata:0x100.0x10ff -dhwstk_size:16 -beeprom:1.2048 -fihx_coff -S2 @main.lk D:\PROTEU~1.7\PROTEU~1.7\JOHU\mcu\all\CH375HFB.A -lcatmega
Device 45% full.
warning: COFF no struct tag '_CMD_PARAM' found for symbol index 1362
Done.
一个警告,搞不太清楚,以前starnewtech说过,好像是ram不够用了。
十四、重复定义 ,请在包含的头文件里面用这种格式。

#ifndef __config_H__
#define __config_H__ 1
//你的定义放这里。
#endif

进入单片机查看更多内容>>
相关视频
  • RISC-V嵌入式系统开发

  • SOC系统级芯片设计实验

  • 云龙51单片机实训视频教程(王云,字幕版)

  • 2022 Digi-Key KOL 系列: 你见过1GHz主频的单片机吗?Teensy 4.1开发板介绍

  • TI 新一代 C2000™ 微控制器:全方位助力伺服及马达驱动应用

  • MSP430电容触摸技术 - 防水Demo演示

精选电路图
  • 光控音效发生器电路

  • 离子检测器电路分析

  • 非常简单的150W功放电路图

  • 基于IC555的可变PWM振荡器电路

  • 使用NE555和磁簧开关的橱柜照明电路

  • 一种构建12V和230V双直流电源的简单方法

    相关电子头条文章