1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-02-13 00:16:11 +02:00

Add Mac OS instructions for picocom too.

This commit is contained in:
Andrew Walbran 2023-03-24 17:41:29 +00:00
parent 6f83b97e69
commit d513109b92

View File

@ -45,10 +45,16 @@ use microbit::{hal::uarte::{Baudrate, Parity, Uarte}, Board};
{{#include compass/.cargo/config.toml}}
```
See the serial output with
See the serial output on Linux with:
```sh
picocom --baud 115200 --imap lfcrlf /dev/ttyACM0
```
Or on Mac OS something like (the device name may be slightly different):
```sh
picocom --baud 115200 --imap lfcrlf /dev/tty.usbmodem14502
```
Use Ctrl+A Ctrl+Q to quit picocom.