Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trouble loading code to Arduino board from Mac OSX Mavericks

I have an Arduino Uno and code was loading fine yesterday but today I am consistently getting the following error (shown by setting the upload section to verbose)

avrdude: Version 5.11, compiled on Sep  2 2011 at 18:52:52
         Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
         Copyright (c) 2007-2009 Joerg Wunsch

         System wide configuration file is "/Applications/Arduino.app/Contents/Resources/Java/hardware/tools/avr/etc/avrdude.conf"
         User configuration file is "/Users/seanwhipple/.avrduderc"
         User configuration file does not exist or is not a regular file, skipping

         Using Port                    : /dev/tty.usbmodemfa131
         Using Programmer              : arduino
         Overriding Baud Rate          : 115200
avrdude: Send: 0 [30]   [20] 
avrdude: Send: 0 [30]   [20] 
avrdude: Send: 0 [30]   [20] 
avrdude: ser_recv(): programmer is not responding
avrdude: stk500_recv(): programmer is not responding

avrdude done.  Thank you.

I went to the Arduino troubleshooting website and updated my drivers and made sure the connection was good. I also reset the board. The drivers I have available are /dev/tty.usbmodemfa131 and /cu/tty.usbmodemfa131.

Any help is greatly appreciated

like image 701
sedavidw Avatar asked Apr 13 '14 16:04

sedavidw


People also ask

Why is my code not uploading to Arduino?

Check that you have the correct port selected. If it is correct, try pressing the board's reset button after initiating the upload. This error can happen if the board on the selected port has been disconnected from the computer, or reassigned to a different port. Make sure the board is connected to your computer.

How do I run an Arduino code on a Mac?

To do this, open Safari on your Mac and just go to the website www.arduino.cc. Once you have opened the website, go to the software section and click on downloads from the dropdown menu. Now select the Mac OS X version, hit download and wait for the download to finish.

Why is my Arduino not connecting?

First make sure your board is on (the green LED is on) and connected to the computer. The Arduino Uno and Mega 2560 may have trouble connecting to a Mac through a USB hub. If nothing appears in your "Tools > Serial Port" menu, try plugging the board directly to your computer and restarting the Arduino IDE.

Is Arduino supported on Mac?

Download the Arduino Software (IDE)If you use Safari it will be automatically extracted. If you use a different browser you may need to extract it manually. Copy the Arduino application bundle into the Applications folder (or elsewhere on your computer).


1 Answers

this guy, glenn west, summed up the solution very well. http://3dwest.blogspot.de/2013/12/arduino-in-osx-109-stk500recv.html

since mavericks apple provides his own ftdi-driver, which interferes with the one from the ftdi-site. you have to deactivate apple ones and reinstall the old ftdi-driver. glenn west description likewise.

in my case there was still trash in the bootloader of former failed communication attempts, which killed the communicationprocess... but standard-arduino boards have an reset-button to clean-up the bootloader. so probably u have to do this one time.

like image 147
radiatedDogsInFukushima Avatar answered Oct 03 '22 22:10

radiatedDogsInFukushima