本帖最后由 小小K 于 2013-7-19 16:53 编辑
为什么板子不能正常upload 程序,老是差一点就卡住了。如图
还有,为什么arduino uno 版已经连上了 还提示sketch disappear??(版型选择没有问题)
问题详细:刚才我又按了reset 按钮 然后换上了温度湿度传感器(我之前编的一个程序)能正常输出温度湿度,然后当把之前的温度湿度传感器留在a5处 ,将我为火焰温度传感器编的程序upload到板子上时 顺利完成 但是当我打开serial monitor打开时显示的还是温度湿度(板子上运行的还是之前的程序)换上火焰传感器时又不能正常烧录(还是卡住 ,还是那样)
程序:
int firePin = 5 ;
int val;
void setup(){
pinMode(firePin,INPUT);
Serial.begin(9600);
}
void loop(){
val = analogRead(firePin);
Serial.println(val);
delay(500);
}
uploading信息
Binary sketch size: 2,432 bytes (of a 30,720 byte maximum)F:\邢顺凯\arduino-1.0.5\hardware/tools/avr/bin/avrdude -CF:\邢顺凯\arduino-1.0.5\hardware/tools/avr/etc/avrdude.conf -v -v -v -v -patmega328p -carduino -P\\.\COM3 -b57600 -D -Uflash:w:d:\MyHexDir\fire.cpp.hex:i
avrdude: Version 5.11, compiled on Sep 2 2011 at 19:38:36
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2009 Joerg Wunsch
System wide configuration file is "F:\邢顺凯\arduino-1.0.5\hardware/tools/avr/etc/avrdude.conf"
Using Port : \\.\COM3
Using Programmer : arduino
Overriding Baud Rate : 57600
avrdude: Send: 0 [30] [20]
//就是到这就卡住了
|