1

Before I tear all my hair and teeth out, can anyone please help. I have tried googling an answer and have not found anything.

My Setup:

  1. Win7 64bit
  2. Arduino 1.6.9 IDE freshly reinstalled
  3. COM14 port in Arduino IDE checked
  4. Under Device Manager COM14 shows as: "USB Serial Port (COM14)". Not as "Arduino...(COM14)" as some pages have shown
  5. I am not sure if I have a real or copy of the Arduino. As far as I can figure out I have a real one, on the back I have the FT232RL chip
  6. I have bought 2 Arduino Nanos and both show same error
  7. Both Nanos came pre-soldered, (no noob soldering by me)
  8. I have tried uploading sketches on my Win7 platform AND over a Raspberry Pi, both same error

Now perhaps most importantly I previously ordered an Arduino from the same retailer and that one worked. The two I have now dont work.

The problem:

  1. When I try upload I get the same message every time: avrdude: stk500_recv(): programmer is not responding

    a. it does this 10 times and then fails

    b. Rx and Tx LED's are ON and do NOT blink at all at any point in time

    c. Green power LED is always ON, no blinking

    d. Pin13 LED blinks consistently

    e. I have tried the extreemly annoying reset "trick" before uploading, after uploading, at the same time, during uploading, and nothing works

I am seriously at a loss here. I have had an Arduino Nano work on my pc.

Any help would be greatly appreciated please.

sa_leinad
  • 3,218
  • 2
  • 23
  • 51
Misha
  • 11
  • 1
  • 2

4 Answers4

2

The Arduino.cc developers changed the bootloader on official Arduino Nanos to communicate at a different speed. Try setting Tools → Processor → ATmega328P (Old Bootloader)

scruss
  • 251
  • 2
  • 8
1

Sorry for posting this as an answer, I don't have enough rep to write comments yet.

1) Have you tried different USB cables? A dodgy USB cable could power the Nano just fine, giving the impression that it's properly connected, without not actually supporting the data rate required for programming. The fact that something shows up on a USB port on your computer makes this explanation less plausible, though.

2) I notice that there are different versions of the Nano, some with ATmega168 and some with ATmega328. If you have the ATmega328, maybe try selecting "Arduino Uno" in the IDE? If you have the ATmega168, maybe try "Arduino Mini"?

Dampmaskin
  • 286
  • 2
  • 8
0

The baudrate for those is 57600. Try checking for an error in your boards.txt .

user400344
  • 348
  • 1
  • 11
0

try a different COM port. I had a corrupted COM3 and it gave the exact same error message that you got

jeff
  • 1