tokio-serial
tokio-serial copied to clipboard
A serial port implementation for tokio
Hey @estokes. I was just looking to see what changed in 5.0.3 -> 5.0.4 and it looks like all you did was bump `mio-serial` from 5.0.2 to 5.0.3? I might...
We're using Rust application to talk to other devices using Serial COM ports. I tried working on a "fast port search", which would connect to all ports asynchronously, write command...
## Environment * OS: `FreeBSD 13.1-RELEASE GENERIC`, default config * Rust: `1.62.0 (a8314ef7d 2022-06-27)` * tokio-serial `v5.4.3` * mio-serial `v5.0.2` * serialport `v4.2.0` ## Test scenario * FreeBSD box with...
The SerialPort::Clear function seems to do really wonky stuff to the receive buffer in async code. I see a lot of messages repeated twice and partial messages when I use...
So I am having some issues with performance when reading interrupted byte streams from the serial port. Consider this example: **Cargo.toml** ```toml [package] name = "async-serial-test" version = "0.1.0" edition...
I was just checking out this crate for a project and stumbled upon [this part](https://docs.rs/tokio-serial/5.4.3/tokio_serial/struct.SerialPortBuilder.html#impl-SerialPortBuilderExt) in the docs. Apparently, there are two `SerialPortBuilderExt` traits doing more or less the same...
I'm trying to use this library, and with little knowledge of tokio and that stuff (as I have), I think it's difficult to know how to send data through the...
I'm trying to port an existing C# application that talks to scales to rust. I went all in on async and tokio so I thought this crate would be a...