0

我对 arduino 很陌生,我最近买了一个 Nano,当我尝试上传代码时,它会抛出这个错误:

`Arduino: 1.8.13 (Windows 10), Board: "Arduino Nano, ATmega328P (Old Bootloader)"

Sketch uses 924 bytes (3%) of program storage space. Maximum is 30720 bytes.

Global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes for local variables. Maximum is 2048 bytes.

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x03

avrdude: stk500_recv(): programmer is not responding

avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x03

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"
option enabled in File -> Preferences.

我试过换程序员,把处理器换成旧的引导程序;所有标准的东西。没有任何效果。任何帮助将不胜感激

4

2 回答 2

0

Arduino Nano 使用 CH340G 驱动程序,与 UNO 中使用的 CP2102 不同,因此您需要安装正确的驱动程序并检查内部驱动程序部分的 COM 端口。如果您已经刻录了新的引导加载程序,则不会导致任何上传问题

作为最后的手段,您可以使用 Arduino 作为 ISP 来对您的 NAno 进行编程,请查看这篇 文章

于 2021-01-16T10:03:23.913 回答
0

测试其他端口和其他 USB 电缆。如果你从中国买这个 nano,也许它有 CH3040 USB 驱动程序(这是一个便宜的中国 USB 通信芯片)。如果是这样,请下载此驱动程序,否则将无法使用中国纳米。

祝你好运!

于 2021-01-15T20:40:02.027 回答