作者yimean (温柔杀手)
看板ASM
标题[问题] Arduino编译错误
时间Tue May 8 20:59:46 2018
各位版上的大大晚上好。
我正在测试一个调光的程式,我都按照书上的打,但是编译的时候就会出现错误。
错误讯息如下。
Arduino:1.8.5 (Windows Store 1.8.10.0) (Windows 10), 开发板:"Arduino/Genuino
Uno"
c:\program
files\windowsapps\arduinollc.arduinoide_1.8.10.0_x86__mdqgnx93n4wtt\hardware\tools\avr\bin\
../lib/gcc/avr/4.9.2/../../../../avr/bin/ar.exe:
unable to rename 'core\core.a'; reason: File exists
exit status 1
开发板 Arduino/Genuino Uno 编译错误。
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
请问这是什麽意思?我要把ar.exe删掉吗?
我是用同一个档案做练习,一旦完成练习後,我就把程式码注解起来重新写下一段。
不知道这会不会有关系?
下方是我的程式码
#define LED 9
int i=0;
void setup(){
pinMode(LED,OUTPUT);
}
void loop(){
for (i=0;i<255;i++){
analogWrite(LED, i);
delay(10);
}
for (i=255;i>0;i--){
analogWrite(LED,i);
delay(10);
}
}
烦请高手指导,感谢。
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 123.195.98.141
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/ASM/M.1525784389.A.7D0.html
1F:→ god145145: 程式码没问题 你同份文件上面还很多程式? 05/08 23:47
2F:→ yimean: 对,但是我都注解掉了 05/09 13:11
3F:→ yimean: 我重新砍掉所有注解就正常了。请大家不用伤脑筋了。 05/09 21:48
4F:→ magentatt: 照理来说注解不影响程式吧~~ 05/12 01:05