#串行 #串行端口 #控制台 #命令行 #命令行工具 #波特率

app serial-console

用于与串行控制台通信的命令行工具

7 个版本 (2 个稳定版)

1.0.1 2023年2月9日
1.0.0 2022年1月21日
0.4.4 2022年1月5日
0.4.3 2021年8月24日
0.1.0 2021年8月4日

#1510 in 命令行工具

每月48次下载

MIT 许可证

13KB
277 代码行

Scip - 串行控制台接口程序

用 Rust 编写的用于与串行控制台通信的命令行工具

安装

cargo install serial-console

用法

USAGE:
    scip <DEVICE> [ARGS]

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

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

要获取更多帮助信息和参数建议,请添加 --help 选项

scip --help

示例

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

许可证

MIT

依赖项

~5MB
~102K SLoC