Scip - Serial Console Interfacing Program

A command line tool to communicate with a serial console written in Rust

Installation

bash cargo install serial-console

Usage

``` USAGE: scip [ARGS]

ARGS: Set the device path to a serial port Set the baud rate to connect at [default: 9600] Set the number of bits used per character [default: 8] [possible values: 5, 6, 7, 8] Set the parity checking mode [default: N] [possible values: N, O, E] Set the number of stop bits transmitted after every character [default: 1] [possible values: 1, 2] Set the flow control mode [default: N] [possible values: N, H, S]

Escape commands begin with and end with one of the following sequences: ~~ - send the '~' character ~. - terminate the connection ```

For more verbose help information and parameter suggestions add the --help option: bash scip --help

Examples

bash scip /dev/ttyUSB0 115200 scip /dev/ttyUSB1 19200 6 E 2 H

License

MIT