mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:22:09 +02:00
pio-device: add page (#5725)
This commit is contained in:
parent
413ddfcca8
commit
00f46c3dc0
1 changed files with 32 additions and 0 deletions
32
pages/common/pio-device.md
Normal file
32
pages/common/pio-device.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# pio device
|
||||
|
||||
> Manage and monitor PlatformIO devices.
|
||||
> More information: <https://docs.platformio.org/en/latest/core/userguide/device/>.
|
||||
|
||||
- List all available serial ports:
|
||||
|
||||
`pio device list`
|
||||
|
||||
- List all available logical devices:
|
||||
|
||||
`pio device list --logical`
|
||||
|
||||
- Start an interactive device monitor:
|
||||
|
||||
`pio device monitor`
|
||||
|
||||
- Start an interactive device monitor and listen to a specific port:
|
||||
|
||||
`pio device monitor --port {{/dev/ttyUSBX}}`
|
||||
|
||||
- Start an interactive device monitor and set a specific baud rate (defaults to 9600):
|
||||
|
||||
`pio device monitor --baud {{57600}}`
|
||||
|
||||
- Start an interactive device monitor and set a specific EOL character (defults to `CRLF`):
|
||||
|
||||
`pio device monitor --eol {{CRLF|CR|LF}}`
|
||||
|
||||
- Go to the menu of the interactive device monitor:
|
||||
|
||||
`Ctrl + T`
|
Loading…
Add table
Reference in a new issue