Alex Martens
Alex Martens
For linking I found this guide from bevy: https://bevy-cheatbook.github.io/setup/cross/linux-windows.html Worked for me after that.
The libftd2xx FTDI data type is a pointer to a private structure, not a fd. `serialport` utilizes `FDDUPD` on Linux, so we can't do the same here: https://docs.rs/serialport/4.2.0/src/serialport/posix/tty.rs.html#335 libftd2xx is...
What would be involved in this? I haven't looked into the `ftd3xx` chips, I know they have a different library, are the functions different enough for this to be a...
That sounds good to me! I sent you an invite for the org. I think you have permission to make repositories.
I'm usually on matrix for IM if you have that `@newAM` on `:matrix.org`
I haven't gotten anything yet, what's your matrix user?
I sent you a message, hopefully it works. I'm also usually in the `#rust-embedded:matrix.org` room on matrix.
Oooooooh! That's what that function was for! I thought it was for reading the `BitMode` set with `FT_SetBitMode`, but it's the state of the bus! I added this method a...
I did a 0.13.0 release with the content of the `bitmode` branch (now deleted), if it doesn't solve the issue I can always do another release, not too concerned about...
That's a neat function that I have not gotten to yet! Do you know what `WaitForSingleObject()`/`pthread_cond_wait()` would look like in rust? It looks like I can just call into `libc`...