1
0
mirror of https://github.com/UzixLS/picocom.git synced 2025-07-19 07:21:18 +03:00

Updated manual, rebuilt docs.

This commit is contained in:
Nick Patavalis
2018-02-08 17:15:39 +02:00
parent 8707801496
commit acc4e7ea1a
4 changed files with 22 additions and 20 deletions

View File

@ -31,22 +31,23 @@ likely, already using (the terminal window application, xterm, rxvt,
system console, etc).
When picocom starts it opens the tty (serial port) given as its
non-option argument. Unless the **--noinit** option is given, it
configures the port to the settings specified by the option-arguments
(or to some default settings), and sets it to "raw" mode. If
**--noinit** is given, the initialization and configuration is
skipped; the port is just opened. Following this, if standard input is
a tty, picocom sets the tty to raw mode. Then it goes in a loop where
it listens for input from stdin, or from the serial port. Input from
the serial port is copied to the standard output while input from the
standard input is copied to the serial port. Picocom also scans its
input stream for a user-specified control character, called the
_escape character_ (being by default **C-a**). If the escape character
is seen, then instead of sending it to the serial-device, the program
enters "command mode" and waits for the next character (which is
called the "function character"). Depending on the value of the
function character, picocom performs one of the operations described
in the **[COMMANDS]** section below.
non-option argument (or the *last* non-option argument, if multiple
are given). Unless the **--noinit** option is given, it configures the
port to the settings specified by the option-arguments (or to some
default settings), and sets it to "raw" mode. If **--noinit** is
given, the initialization and configuration is skipped; the port is
just opened. Following this, if standard input is a tty, picocom sets
the tty to raw mode. Then it goes in a loop where it listens for input
from stdin, or from the serial port. Input from the serial port is
copied to the standard output while input from the standard input is
copied to the serial port. Picocom also scans its input stream for a
user-specified control character, called the _escape character_ (being
by default **C-a**). If the escape character is seen, then instead of
sending it to the serial-device, the program enters "command mode" and
waits for the next character (which is called the "function
character"). Depending on the value of the function character, picocom
performs one of the operations described in the **[COMMANDS]** section
below.
# COMMANDS