Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs(Troubleshoot Guide): Add Section On Troubleshooting Serial Data Transmission Permission Issues For Linux Users. #56

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions minimal-launchpad/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,19 @@ <h4 class="topic mb-2" style="font-size: 14px;"><b>Device Connection
disconnect it and try again.
</p>
</div>
<div class="col-xs-12 mt-2">
<h4 class="topic mb-2" style="font-size: 14px;">
<b>Serial Data Transmission Permission Issue</b>
</h4>
<div class="mb-3">
For linux users, the currently logged in user should have read and write access the serial port over USB. On most Linux
distributions, this is done by adding the user to dialout group with the following command:
<div class="command-snippet"> usermod -a -G dialout $USER </div>
on Arch Linux this is done by adding the user to uucp group with the following command:
<div class="command-snippet"> sudo usermod -a -G uucp $USER </div>
Make sure you re-login to enable read and write permissions for the serial port.
</div>
</div>
<div class="col-xs-12 mt-2">
<h4 class="topic mb-2" style="font-size: 14px;"><b>Browser Compatability
Issue</b></h4>
Expand Down
7 changes: 7 additions & 0 deletions minimal-launchpad/minimal_ui_styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@
color: #a35c5c;
padding: 5px;
}

.command-snippet {
padding: 10px;
background-color: #eee;
margin: 5px 5px 5px 0;
}

@keyframes bounce {

0%,
Expand Down