Skip to content

Commit

Permalink
Updated README about serial port permisions.
Browse files Browse the repository at this point in the history
  • Loading branch information
davehylands committed Mar 20, 2020
1 parent 36c0f6d commit a28df4c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,23 @@ Debian/Ubuntu users can get pip3 using:

sudo apt-get install python3-pip

Serial Port Permissions (linux)
===============================

Under linux, the USB serial ports are owned by root and typically have a group of dialout (for ubuntu).
Different unix distros may use a slightly different group name. In order for rshell (or any terminal emulator)
to access the serial port, you'll need to ensure that your user account has sufficient priviledge.
One way to do this is to ensure that your user is added to the dialout group, using a command like:

::

sudo usermod -a -G dialout $USER


Another way, is to use udev rules to modify the permissions on the serial port. There are some instructions
on the [micropython wiki](https://github.com/micropython/micropython/wiki/Board-STM32F407-Discovery#programming-from-linux-via-dfu)
that you can use to setup your udev rules (you don't need to install dfu-utils just to update the permissions).

Sample Session
==============

Expand Down

0 comments on commit a28df4c

Please sign in to comment.