#ftdi #hal #usb #embedded-devices #usb-device #io

unmaintained ftd2xx-embedded-hal

embedded-hal implementation for FTDI USB devices

11 releases (breaking)

0.9.1 Aug 10, 2021
0.9.0 Jul 1, 2021
0.8.0 May 29, 2021
0.5.1 Mar 21, 2021
0.2.0 Sep 13, 2020

#19 in #ftdi

Download history 21/week @ 2023-12-04 78/week @ 2023-12-11 2/week @ 2023-12-18 44/week @ 2023-12-25 31/week @ 2024-01-01 9/week @ 2024-01-08 46/week @ 2024-01-15 26/week @ 2024-01-22 57/week @ 2024-01-29 32/week @ 2024-02-19 42/week @ 2024-02-26 2/week @ 2024-03-04 60/week @ 2024-03-11 43/week @ 2024-03-18

150 downloads per month

MIT license

51KB
814 lines

Maintenance crates.io docs.rs Build Status

ftd2xx-embedded-hal

Inspired by ftdi-embedded-hal this is an embedded-hal implementation for the for the FTDI chips using the libftd2xx drivers.

This enables development of embedded device drivers without the use of a microcontroller. The FTDI D2xx devices interface with your PC via USB, and provide a multi-protocol synchronous serial engine to interface with most UART, SPI, and I2C embedded devices.

Note: This is strictly a development tool. The crate contains runtime borrow checks and explicit panics to adapt the FTDI device into the embedded-hal traits.

Quickstart

  • Enable the "static" feature flag to use static linking.
  • Linux users only: Add udev rules.
[dependencies.ftd2xx-embedded-hal]
version = "~0.9.1"
features = ["static"]

Examples

SPI

use embedded_hal::prelude::*;
use ftd2xx_embedded_hal::Ft232hHal;

let ftdi = Ft232hHal::new()?.init_default()?;
let mut spi = ftdi.spi()?;

I2C

use embedded_hal::prelude::*;
use ftd2xx_embedded_hal::Ft232hHal;

let ftdi = Ft232hHal::new()?.init_default()?;
let mut i2c = ftdi.i2c()?;

GPIO

use embedded_hal::prelude::*;
use ftd2xx_embedded_hal::Ft232hHal;

let ftdi = Ft232hHal::new()?.init_default()?;
let mut gpio = ftdi.ad6();

Limitations

  • Limited trait support: SPI, I2C, Delay, and OutputPin traits are implemented.
  • Limited device support: FT232H, FT2232H, FT4232H.

Dependencies

~8MB
~76K SLoC