mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
24 lines
555 B
Markdown
24 lines
555 B
Markdown
# minicom
|
|
|
|
> Communicate with the serial interface of a device.
|
|
> More information: <https://manned.org/minicom>.
|
|
|
|
- Open a given serial port:
|
|
|
|
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}}`
|
|
|
|
- Open a given serial port with a given baud rate:
|
|
|
|
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}} {{[-b|--baudrate]}} {{115200}}`
|
|
|
|
- Enter the configuration menu before communicating with a given serial port:
|
|
|
|
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}} {{[-s|--setup]}}`
|
|
|
|
- Exit minicom:
|
|
|
|
`<Ctrl a><x><Enter>`
|
|
|
|
- Display help:
|
|
|
|
`minicom {{[-h|--help]}}`
|