You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To use Viam, you need to install either the `viam-server` binary or the micro-RDK.
@@ -319,3 +320,27 @@ However, if the correct port has been selected, try the following:
319
320
You can find additional assistance in the [Troubleshooting section](/appendix/troubleshooting/).
320
321
321
322
{{< snippet "social.md" >}}
323
+
324
+
#### Computer not recognizing the microcontroller
325
+
326
+
If you’re trying to connect a microcontroller using serial port to an Ubuntu system and the computer doesn’t seem to be recognizing the microcontroller, check if the `brltty` service or its secondary service `brltty-udev` are active (`brltty` is a service installed by default that provides access to a braille display):
brltty-udev.service loaded active running Braille Device Support
331
+
```
332
+
333
+
It is a known issue that this service takes ownership of cp210x devices that are used in serial communication with microcontrollers.
334
+
335
+
To disable the services, run the following:
336
+
337
+
```sh {class="command-line" data-prompt="$"}
338
+
sudo systemctl stop brltty-udev.service
339
+
sudo systemctl mask brltty-udev.service
340
+
sudo systemctl stop brltty.service
341
+
sudo systemctl disable brltty.service
342
+
```
343
+
344
+
You may also need to reboot your system, and/or unplug the cable from the computer and re-plug it in.
345
+
346
+
See this [blog post](https://koen.vervloesem.eu/blog/how-to-stop-brltty-from-claiming-your-usb-uart-interface-on-linux/) and [Ubuntu bug report](https://bugs.launchpad.net/ubuntu/+source/brltty/+bug/1958224) for more.
0 commit comments