mio-serial icon indicating copy to clipboard operation
mio-serial copied to clipboard

Results 23 mio-serial issues
Sort by recently updated
recently updated
newest added

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. ![image](https://user-images.githubusercontent.com/14890680/204304058-9828113b-d83a-4c82-ac0a-91159c44cfb3.png) in the code: examples\read_serialport.rs ![image](https://user-images.githubusercontent.com/14890680/204310427-0e131642-a878-45ba-b501-9218c3dd3f14.png) ![image](https://user-images.githubusercontent.com/14890680/204310238-24565967-24c8-4523-9615-1b1823db8ea4.png)