mlsvrts

Results 29 comments of mlsvrts

Fast `BufReader` example (loopback port): ```rust use std::io::{BufReader, BufRead}; fn main() { let mut port = serialport::new("COM3", 9600) .timeout(std::time::Duration::from_millis(500)) .open() .expect("failed to open port"); let reader = port.try_clone() .expect("failed to...

@vladimire-chen Do you see the same behavior if you use PR #55?

> Continuing here the discussion opened on PR #94 (see my comment [here](https://github.com/serialport/serialport-rs/pull/94#issuecomment-1568572138)), since it seems a more appropriate place. A colleague used the same USB device on the same...

@jessebraham Okay, I've done some testing with this on a Windows 11 box with an FTDI USB->serial adapter and things seem to be working well. (See #69 for the loopback...

@Qix- Serialport support in WSL2 is pretty new and limited, so I'm inclined to think that this is a WSL issue. Since you can talk to it with cat, I...

I got around to testing this and can also improve performance with this change!

So, I'm not sure I agree with the changes proposed by this MR: 1/2) I think it's correct to leave DTR/RTS disabled by default -- not all hardware expects and...

> It doesn't solve the timeouts problems described on #29 for me. Weirdly enough, the 4.2 version was working fine up until yesterday. The microcontroller I have is STM32L476QEI6. I...

I recommended this change since we saw issues with reporting device serial numbers as fixed by: https://github.com/serialport/serialport-rs/pull/63 It's kind of a case of "if you _can_ do, then someone _will_...