My board keeps saying that it can not download. The board is an duemilanove or diecimila
Here is the message:
Arduino: 1.6.6 (Windows 7), Board: "Arduino Duemilanove or Diecimila, ATmega328"
Sketch uses 3,088 bytes (10%) of program storage space. Maximum is 30,720 bytes.
Global variables use 198 bytes (9%) of dynamic memory, leaving 1,850 bytes for local variables. Maximum is 2,048 bytes.
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xef
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xef
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"
enabled in File > Preferences.
It dose not say which one specifically it just says It a Duemilanove or Diecimila.It also says that it is Based on ATMEGA328 surface mount chip (Uno design) and L298P H Bridge and I bought it from robotshop.com as a DFRobotShop Rover V2 - Arduino Compatible Tracked Robot (Autonomous Dev Kit).
michal1503:
It dose not say which one specifically it just says It a Duemilanove or Diecimila.It also says that it is Based on ATMEGA328 surface mount chip (Uno design) and L298P H Bridge and I bought it from robotshop.com as a DFRobotShop Rover V2 - Arduino Compatible Tracked Robot (Autonomous Dev Kit).
Thanks for the help.
The DFRobotShop Rover V1.5 is essentially a standard Arduino Duemilanove board while the
DFRobotShop Rover V2.0 is essentially a standard Arduino Uno board. All code and examples found on
www.arduino.cc can be used.
not in sync resp 0xEF? Dollars to donuts, you're trying to upload with the wrong speed, probably because it's using the Uno bootloader (optiboot) at 115200 baud, and you've got the Duemillanove selected, which uses the old crappy bootloader that operates at 19200 baud, so it's trying to talk at 19200. Nowadays, people almost always bootload '328 based boards with optiboot, because it's just plain better; it's faster, and more importantly, uses 512b of flash, instead of 2048.