dianjvnan 发表于 2017-5-17 18:50:33

OCROBOT 0.1.1出现这个问题 求解决

Arduino:0.1.1 (Windows XP), 开发板:"Arduino Uno"

collect2.exe: error: ld returned 5 exit status

exit status 1
为开发板 Arduino Uno 编译时出错。

collect2.exe: error: ld returned 5 exit status

exit status 1

dianjvnan 发表于 2017-5-17 18:52:36

注释掉delay函数就可以通过了      

弘毅 发表于 2017-5-17 20:44:27

什么代码?我们去测试下。

dianjvnan 发表于 2017-5-17 21:02:48

/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.

Most Arduinos have an on-board LED you can control. On the Uno and
Leonardo, it is attached to digital pin 13. If you're unsure what
pin the on-board LED is connected to on your Arduino model, check
the documentation at http://www.arduino.cc

This example code is in the public domain.

modified 8 May 2014
by Scott Fitzgerald
*/


// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
delay(1000);            // wait for a second
digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
delay(1000);            // wait for a second
}


就这个IDE的例程代码

dianjvnan 发表于 2017-5-17 22:54:18

弘毅大神,IDE没问题,WIN7下没问题,,,XP下就有这样的问题

弘毅 发表于 2017-5-18 06:35:35

本帖最后由 弘毅 于 2017-5-18 06:37 编辑

dianjvnan 发表于 2017-5-17 22:54
弘毅大神,IDE没问题,WIN7下没问题,,,XP下就有这样的问题

这。。。。XP在我身边都已经绝迹了。。。。:lol 微软都停止支持了。。。我也就不凑这热闹了
页: [1]
查看完整版本: OCROBOT 0.1.1出现这个问题 求解决