I am trying to set up my new Arduino Nano and am getting the avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x28 error. Previously, when I'd used my Arduino UNO with the IDE, everything had worked fine but there seems to be something wrong when using the new board. The pin 13 LED also is steadily flashing on and off, and I am not sure if this is normal. Below is the full error message:
avrdude: Version 6.3-20190619
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2014 Joerg Wunsch
System wide configuration file is "C:\Users\Xiaow\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf"
Using Port : COM4
Using Programmer : arduino
Overriding Baud Rate : 115200
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xe2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xe2
avrdude done. Thank you.
Problem uploading to board. See https://support.arduino.cc/hc/en-us/sections/360003198300 for suggestions.
Here are the fixes I've tried so far, none of which have solved the issue. While I did get this message a couple of times with my previous Arduino UNO, it would usually go away after unplugging and replugging, whereas this time the error has been happening consistently:
- Unplugging and plugging the USB cable
- Verifying and reuploading multiple times
- Closing and reopening Arduino IDE
- Checking my board and port (everything is correct, under "tools" it displays the Arduino Nano board, ATmega328P bootloader, and COM4 port)
- Switching to old bootloader
- Uninstalling and reinstalling IDE
- Pressing "reset" on the board and then releasing it when the code starts uploading
- Checking the RX and TX pins there are wires soldered to the board but none of them are remotely close to where the pins are, so I don't think this is an issue
- Restarting my computer
Is there any other solution I could try? Thanks!