mirror of https://github.com/zmkfirmware/zmk.git
Suggest using cu for USB log viewing on macOS (#3027)
* Suggest using cu for USB log viewing on macOS It may not be as friendly, but cu should be available while tio could be hard to install. * Polish wording Co-authored-by: Nicolas Munnich <98408764+nmunnich@users.noreply.github.com> * Suggest "man cu" for how to use this tool --------- Co-authored-by: Nicolas Munnich <98408764+nmunnich@users.noreply.github.com>
This commit is contained in:
parent
a8a392807e
commit
45700887ba
|
|
@ -86,7 +86,13 @@ You can connect to the device with [tio](https://tio.github.io/) (can be install
|
|||
sudo tio /dev/tty.usbmodem14401
|
||||
```
|
||||
|
||||
You should see tio printing `Disconnected` or `Connected` when you disconnect or reconnect the USB cable.
|
||||
Alternatively, `cu` should be preinstalled (see `man cu` for usage instructions):
|
||||
|
||||
```sh
|
||||
sudo cu -l /dev/tty.usbmodem14401
|
||||
```
|
||||
|
||||
You should see the console printing `Disconnected` or `Connected` when you disconnect or reconnect the USB cable.
|
||||
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
|
|
|
|||
Loading…
Reference in New Issue