Skip to content

Commit

Permalink
Minor documentation updates (#360)
Browse files Browse the repository at this point in the history
* fix typo in udev-rules.rst

missing double backticks

* remove Python 3.4 requirement notice for Zephyr

and fix typo (extra "is")
  • Loading branch information
pierre-haessig authored Jul 11, 2024
1 parent 92ce9a4 commit 988666b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/installation/udev-rules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ command). For example, the file permissions for the serial port ``/dev/ttyACM0``
# prints something like:
# crw-rw---- 1 root dialout 166, 0 juil. 10 13:43 /dev/ttyACM0
In that case, the read/write permission (`rw`) is granted to both the “root” user and members of the “dialout” group. Now, it is possible to grant read/write access to all users (``$ sudo chmod a+rw /dev/ttyACM0``), but this would only last as long as the card remains connected (only the udev rules file mentioned above can make such change permanent).
In that case, the read/write permission (``rw``) is granted to both the “root” user and members of the “dialout” group. Now, it is possible to grant read/write access to all users (``$ sudo chmod a+rw /dev/ttyACM0``), but this would only last as long as the card remains connected (only the udev rules file mentioned above can make such change permanent).

The alternative permanent solution is to add its own “username” to the “dialout” group, or whichever group name was identified at the preceding step. Typical names are “dialout”, “plugdev” (Debian/Ubuntu, Fedora), or “uucp” (Arch Linux). Adding a user to a group is done by:

Expand Down
5 changes: 1 addition & 4 deletions frameworks/zephyr_extra.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ Configuration
Project Structure
~~~~~~~~~~~~~~~~~

.. warning::
Zephyr framework currently requires Python 3.4 or later.

`Zephyr <https://www.zephyrproject.org>`_ is framework requires an unusual project structure because most of the framework
`Zephyr <https://www.zephyrproject.org>`_ framework requires an unusual project structure because most of the framework
configuration is performed by the native for Zephyr build system called ``CMake``.

.. note::
Expand Down

0 comments on commit 988666b

Please sign in to comment.