Hi,
I'm on OSX. The device I'm trying to connect to responds fine using e.g. screen. When using tokio-serial I'm getting the response:
called `Result::unwrap()` on an `Err` value: Error { kind: Unknown, description: "Device or resource busy" }
What I tried and what works fine os linux:
let port = "/dev/tty.usbserial-AB0LMQX8";
let mut serial_stream = tokio_serial::new(port, 9600)
.open_native_async().unwrap();