Hello,
I have the following configuration:
Lenovo E130 with Fedora 21 64Bit
Arduino Duemilanova (Due R3)
Arduino IDE 1.6.4
In the IDE I choose:
Tools: Board: Arduino Duemilanova or Diecimila
Tools: Processor: ATMega 328 (I'm not sure if 328 or 168 is the right one, but I tried both)
Tools: Port: /dev/ttyACM0
The Arduino Due is connected to my notebook via USB (I tried both, USB 2.0 and USB 3.0) on the Programming Port (I also tried Native USB Port).
The L-LED and the ON-LED are glowing the whlole time. When I press the Reset-Button nothing happens.
This is my code (the normal blink example):
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(500); // wait for a second
}
This is my output:
Sketch uses 1,068 bytes (3%) of program storage space. Maximum is 30,720 bytes.
Global variables use 11 bytes (0%) of dynamic memory, leaving 2,037 bytes for local variables. Maximum is 2,048 bytes.
/home/mini/arduino-1.6.4/hardware/tools/avr/bin/avrdude -C/home/mini/arduino-1.6.4/hardware/tools/avr/etc/avrdude.conf -v -patmega328p -carduino -P/dev/ttyACM0 -b57600 -D -Uflash:w:/tmp/build700117522996511142.tmp/blink.cpp.hex:i
avrdude: Version 6.0.1, compiled on Apr 14 2015 at 19:04:16
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2009 Joerg Wunsch
System wide configuration file is "/home/mini/arduino-1.6.4/hardware/tools/avr/etc/avrdude.conf"
User configuration file is "/home/mini/.avrduderc"
User configuration file does not exist or is not a regular file, skipping
Using Port : /dev/ttyACM0
Using Programmer : arduino
Overriding Baud Rate : 57600
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x00
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x00
avrdude done. Thank you.
Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.
With every attempt the RX-LED flashes very quick.
What I also tried:
- Start the Arduino-IDE as Superuser > no changes.
- Tried to update the firmware with this tutorial (Bootloader für Arduino Due kompilieren | DinoTools). I get the same error messages (out of sync).
- I checked the troubleshooting section on the Arduino page but found nothing.
The problem is often described on various sites, but none of the solutions described there, worked for me. Do you have any ideas what might be the problem?
Greetings