How to test `serialport-rs` for development. Without hardware: 1. Compilation 2. `cargo test` With a single unconnected device: `cargo run --example hardware_check ` And when wired in a physical loopback mode: `cargo run --example hardware_check --loopback` With two devices connected to each other: * `cargo run --example hardware_check --loopback-port ` * Also `cargo run --example heartbeat ` in one terminal and `cargo run --example receive_data ` in another Can also verify trickier settings (like non-standard baud rates) using serial terminal programs like: * `screen` (POSIX) * [CoolTerm](http://freeware.the-meiers.org/) (macOS) * [RealTerm](https://sourceforge.net/projects/realterm/) (Windows)