Hallo erstmal,
ich hab mir vor wenigen Wochen den arduino zerschossen. Dann habe ich mir einen neuen Micro gekauft und ihn unter ubuntu 14.04 testen wollen! Dann teilt mir die IDE dies hier mit und der sketch wird nicht hochgeladen.
avrdude: ser_open(): can't open device "/dev/ttyACM0": Device or resource busy
avrdude: ser_send(): write error: Bad file descriptor
Ich habe schon ein bisschen mit udev regeln versucht aber ich krieg das einfach nich hin. hat wer ne Ahnung wie man das angehen kann.
Danke für eine AW
Doing test with new Arduino Leonardo ETH on Ubuntu (14.04) we had problem with programming this board:
avrdude: ser_open(): can't open device "/dev/ttyACM0": Device or resource busy avrdude: ser_send(): write error: Bad file descriptor Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.
On Ubuntu (or other distro with ModemManager) ModemManager tries to connect to each new serial port. MM tries if this serial port is GSM modem. This is very convenient for most users, but it keeps serial port open, and Arduino IDE can not communicate with Arduino Leonardo. There is a list of ignored devices by ModemManager, but for now most Arduinos from Arduino.org are not included.
What to do? Just add own rule telling ModemManger to ignore all USB devices from Arduino.org. Open new terminal (Ctrl+Alt+T) and issue command:
echo ‘ATTRS{idVendor}=="2a03", ENV{ID_MM_DEVICE_IGNORE}="1"‘ | sudo tee /etc/udev/rules.d/77-arduino.rules
As noted in comments, there should be other form used, first one won’t work – will not write rule into file, will return Permission denided, thus this update