Fix for uploading arduino.

Discussion in 'Troubleshooting' started by punk45rock, Jan 4, 2014.

  1. punk45rock

    punk45rock Member

    Joined:
    Dec 21, 2013
    Messages:
    32
    Likes Received:
    2
    I was having trouble uploading sketches to the due via /dev/ttymxc3 and noticed a lot of people had this problem.
    I found a fix while running ubuntu 12.04.

    First add user to dialout group.
    Code:
    sudo usermod -a -G dialout <username>
    Then make ttymxc3 r/w to all
    Code:
    sudo chmod a+rw /dev/ttymxc3
    You might need to log out and log in again after.

    Edit: You will probably want to add
    Code:
    chmod a+rw /dev/ttymxc3
    to /etc/rc.local if you want access to arduino after reboot
     
  2. Josh16725

    Josh16725 New Member

    Joined:
    Jan 4, 2014
    Messages:
    1
    Likes Received:
    0
    Worked for me, Quad + Ubuntu 12.04
     

Share This Page