We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c246c commit e52ded7Copy full SHA for e52ded7
src/10-serial-communication/nix-tooling.md
@@ -2,15 +2,16 @@
2
3
Connect the serial module to your laptop and let's find out what name the OS assigned to it.
4
5
+> **NOTE** On macs, the USB device will named like this: `/dev/cu.usbserial-*`. You won't
6
+> find it using `dmesg`, instead use `ls -l /dev | grep cu.usb` and adjust the following
7
+> commands accordingly!
8
+
9
``` console
10
$ dmesg | grep -i tty
11
(..)
12
[ +0.000155] usb 3-2: FTDI USB Serial Device converter now attached to ttyUSB0
13
```
14
-> **NOTE** On macs, the USB device will named like this: `cu.usbserial-*`. Adjust the following
-> commands accordingly!
-
15
But what's this `ttyUSB0` thing? It's a file of course! Everything is a file in *nix:
16
17
0 commit comments