Closed cgonyeo closed 2 years ago
That looks like it is bound to the FTDI kernel module, does sudo rmmod ftdi_sio
change anything?
Oh excellent, my example program runs successfully with that command. I'll find a way to disable that kernel mod, thanks so much for the help.
I've got this USB device I just bought, that shows up as an FTDI device when I plug it in:
I was hoping to use
libftd2xx
to control this device. It shows up when I calllist_devices
andlist_devices_fs
, but the library fails to open it. With the following program:I see the following output:
It's not clear to me why the device fails to open (at the
Ftdi::new()
line), when it's visible underlist_devices
. I have no clue if I'm holding the library wrong, if there's a bug in the c library this binds against, or if the device I purchased has a bug.Also apologies if opening an issue here wasn't the right way to ask for help, I wasn't really able to find any other avenues to reach out through.