#ftdi #usb-device #usb #api-bindings

libftd2xx

Rust safe wrapper around the libftd2xx-ffi crate

49 releases (31 breaking)

0.32.4 Mar 5, 2024
0.32.3 Oct 19, 2023
0.32.2 Dec 14, 2022
0.32.1 Aug 28, 2022
0.7.1 Jul 27, 2020

#43 in Hardware support

Download history 185/week @ 2023-12-25 284/week @ 2024-01-01 371/week @ 2024-01-08 435/week @ 2024-01-15 544/week @ 2024-01-22 745/week @ 2024-01-29 883/week @ 2024-02-05 1004/week @ 2024-02-12 570/week @ 2024-02-19 856/week @ 2024-02-26 1118/week @ 2024-03-04 746/week @ 2024-03-11 662/week @ 2024-03-18 514/week @ 2024-03-25 1015/week @ 2024-04-01 376/week @ 2024-04-08

2,598 downloads per month
Used in 17 crates (10 directly)

MIT license

170KB
2.5K SLoC

crates.io docs.rs CI

libftd2xx

Rust safe wrapper for the FTDI D2XX drivers.

This takes the libftd2xx-ffi C bindings crate and extends it with rust safe wrappers.

Usage

Simply add this crate as a dependency in your Cargo.toml.

[dependencies.libftd2xx]
version = "0.32.4"
# statically link the vendor library, defaults to dynamic if not set
# this will make things "just work" on Linux and Windows
features = ["static"]

This is a basic example to get your started. Check the source code or documentation for more examples.

use libftd2xx::{Ftdi, FtdiCommon};

let mut ft = Ftdi::new()?;
let info = ft.device_info()?;
println!("Device information: {:?}", info);

This crate is just a wrapper around the FTD2XX driver; I2C, SPI, and GPIO examples using the embedded-hal traits can be found in ftdi-embedded-hal.

udev rules

To access the FTDI USB device as a regular user on Linux you need to update the udev rules.

Create a file called /etc/udev/rules.d/99-ftdi.rules with:

SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6010", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6011", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6014", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6015", MODE="0666"

Then, reload the rules:

sudo udevadm control --reload-rules
sudo udevadm trigger

Linking

By default this crate with use dynamic linking for the vendor library. Use the static feature flag to enable static linking.

Dynamic Linking on Linux

The shared object libftd2xx.so must exist on your system. See FTDI Drivers Installation Guide for Linux for instructions.

Dynamic Linking on Windows

The FTD2XX DLL must exist on your system PATH. The easiest way to install this is with the vendor provided setup executable.

Static Linking on Linux or Windows

No special considerations are needed, the static library is distributed with permission from FTDI in the libftd2xx-ffi crate.

References

Troubleshooting

Unknown Device on Linux

Remove the VCP FTDI driver.

sudo rmmod ftdi_sio
sudo rmmod usbserial

See FTDI Drivers Installation Guide for Linux for more details.

Dependencies

~7.5MB
~73K SLoC