mio-serial
mio-serial copied to clipboard
I'm getting this error when trying to compile a project that uses mio-serial as a dependency. However, I can clone this repo and build successfully. Any ideas on what to...
for the example: examples\read_serialport.rs ``` rust poll.registry() .register(&mut rx, SERIAL_TOKEN, Interest::READABLE) .unwrap(); loop { poll.poll(&mut events, None)?; // handle the read event // ... } ``` How to modify device...
It fails to compile with: `/usr/lib/libudev.so: file not recognized: File format not recognized` `cargo build --target=armv7-unknown-linux-gnueabihf` Any idea of how to solve that ? My cargo file ```toml [dependencies] clap...
I've been thinking about using `mio-serial` in a project but I'm a bit confused about the scope of this crate and how to properly used it. Generally it looks a...
I'm trying to read and write a serial port using streaming, and would like to do it without Tokio dependencies. `mio-serial` looks close, but I'm a newbie to Async Rust...
Exposing this feature here allows for example upstream tokio-serial to also expose it
```rust let mut rx = serialport::new(&args.port, args.baud_rate).open_native_async()?; ``` [error on this line](https://github.com/berkowski/mio-serial/blob/master/src/lib.rs#L577) ```log Error: Custom { kind: Other, error: "Invalid stop bits setting encountered" } ``` some software serialport doesen't...
> No description, website, or topics provided. From crates.io: > mio-serial: A serial port IO library MIO. > mio-serial provides a serial port implementation using [mio](https://github.com/carllerche/mio). Your tokio repo says:...
This is an automatically-generated PR to update plain HTTP links in Cargo.toml If there are any issues with this, you can reach out to @/Benjins on Github who is the...
when SerialStream was dropped, the member "inner: mem::ManuallyDrop" was not dropped, this will prevent to open the serial again.  in the code: examples\read_serialport.rs  