独立Arduino未上载

独立Arduino未上载,arduino,Arduino,我正在尝试构建自己的arduino,在上传代码时遇到了一些问题 我非常确定我的构建是正确的,因为当我按下重置按钮时,针脚13上的LED闪烁3次 尝试上载时出现的错误是: Arduino: 1.6.0 (Windows 8), Board: "Arduino Uno" Sketch uses 450 bytes (1%) of program storage space. Maximum is 32,256 bytes. Global variables use 9 bytes (0%) of

我正在尝试构建自己的arduino,在上传代码时遇到了一些问题

我非常确定我的构建是正确的,因为当我按下重置按钮时,针脚13上的LED闪烁3次

尝试上载时出现的错误是:

Arduino: 1.6.0 (Windows 8), Board: "Arduino Uno"

Sketch uses 450 bytes (1%) of program storage space. Maximum is 32,256 bytes.

Global variables use 9 bytes (0%) of dynamic memory, leaving 2,039 bytes for local variables. Maximum is 2,048 bytes.

avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x01
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x01
Problem uploading to board.  See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.

  This report would have more information with
  "Show verbose output during compilation"
  enabled in File > Preferences.
我的操作系统是Windows 8,我尝试使用的芯片是Atmega328P PU


我确实检查了端口和驱动程序,并在上载时尝试按下重置按钮。

要解决此问题,请首先确保选择:

- Tool > boad > Arduino uno
- Tool > port > COM X (the one available)
通常您不必按下重置按钮,因为在上传之前(使用重置引脚),Arduino IDE会自动完成重置。但是,如果您仍然存在同步问题,请尝试在编译过程刚结束时按下重置按钮(以便在上载过程开始时立即按下重置按钮)

如果您仍在努力尝试降级到Arduino IDE 1.0.6

谢谢您“尝试在编译过程结束后点击重置按钮”成功!