├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── img ├── cli.png └── htop.gif └── src ├── args_parse.rs ├── key_listener.rs ├── main.rs ├── uart_readout.rs └── utf8_buffer.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode/ -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/README.md -------------------------------------------------------------------------------- /img/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/img/cli.png -------------------------------------------------------------------------------- /img/htop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/img/htop.gif -------------------------------------------------------------------------------- /src/args_parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/src/args_parse.rs -------------------------------------------------------------------------------- /src/key_listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/src/key_listener.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/uart_readout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/src/uart_readout.rs -------------------------------------------------------------------------------- /src/utf8_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/serialport_monitor/HEAD/src/utf8_buffer.rs --------------------------------------------------------------------------------