Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wilyJ80 authored Mar 14, 2024
1 parent b41effc commit 0aea304
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,13 @@ when using a serial port, the monitor baud rate can be set to 4800 with the foll

## "Permission denied" error in sketch upload

This problem might happen on some Linux systems, and can be solved by setting up serial port permissions. First, search for the port your board is connected to, with the command:
This problem might happen on some Linux systems, and can be solved by setting up serial port permissions. First, search

Check failure on line 46 in docs/FAQ.md

View workflow job for this annotation

GitHub Actions / lint

Trailing spaces [Expected: 0; Actual: 1]
for the port your board is connected to, with the command:

`$ arduino-cli board list`

Then add your user to the group with the following command, replacing `<username>` with your username and `<group>` with your group name. Logging out and in again is necessary for the changes to take effect.
Then add your user to the group with the following command, replacing `<username>` with your username and `<group>` with

Check failure on line 51 in docs/FAQ.md

View workflow job for this annotation

GitHub Actions / lint

Trailing spaces [Expected: 0; Actual: 1]
your group name. Logging out and in again is necessary for the changes to take effect.

`$ sudo usermod -a -G <group> <username>`

Expand Down

0 comments on commit 0aea304

Please sign in to comment.