Hi @skj_2002. A program called a "bootloader" is stored in a special area of memory in the Nano board's microcontroller. The classic Nano (as well as its 3rd party derivatives) have been manufactured with two different types of bootloader installed.
You must configure the Tools > Processor menu in Arduino IDE according to which bootloader is installed on your Nano. Having the incorrect configuration selected in this menu is one of the potential causes of uploads failing with the "avrdude: stk500_recv(): programmer is not responding" error.
The multiple blinks on reset tell us that your Nano board has the modern bootloader installed.
I can see from the verbose upload output that you have Arduino IDE incorrectly configured for use with the Nano boards with the "old bootloader".
Select Tools > Processor > ATmega328P from the Arduino IDE menus to configure it for use with the modern bootloader and then try uploading again.
Hopefully this time the upload will finish successfully.
I see a single blink after reset. After I select Tools > Processor > ATmega328P and got a new error.
전역 변수는 동적 메모리 9바이트(0%)를 사용, 2039바이트의 지역변수가 남음. 최대는 2048 바이트.
"C:\Users\sk02j\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/bin/avrdude" "-CC:\Users\sk02j\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf" -v -V -patmega328p -carduino "-PCOM2" -b115200 -D "-Uflash:w:C:\Users\sk02j\AppData\Local\arduino\sketches\2411FD38178999945D8A5068D545FE54/Blink.ino.hex:i"
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\sk02j\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf"
Using Port : COM2
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=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x3a
avrdude done. Thank you.
Failed uploading: uploading error: exit status 1
It's really weird that both processors are failing to respond.
Good point. This does indicate that your board has the "old bootloader" and thus the previous Tools > Processor > ATmega328P (Old bootloader) configuration was the correct one.
The STK500 is an older Atmel AVR programmer, often seen in Arduino contexts as an error source (avrdude: stk500_recv(): programmer is not responding) or a hardware tool for burning bootloaders, requiring specific setup (like programmers.txt edits or using it as an ISP) to work with the Arduino IDE, but typically, modern Arduinos use simpler USB-to-Serial chips, making direct STK500 use for simple sketches less common than fixing general upload errors by checking COM ports, cables, and board selections.
I tried to upload with same board and same cable but with different computer. Then, I could successfully upload.
I'm not sure why Arduino Nano was not happy with my labtop yesterday. My labtop is still failing to upload. Is there any drivers to be updated or downloaded for clone board?