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.
toml
[dependencies.ftd2xx-embedded-hal]
version = "~0.9.0"
features = ["static"]
```rust use embeddedhal::prelude::*; use ftd2xxembedded_hal::Ft232hHal;
let ftdi = Ft232hHal::new()?.init_default()?; let mut spi = ftdi.spi()?; ```
```rust use embeddedhal::prelude::*; use ftd2xxembedded_hal::Ft232hHal;
let ftdi = Ft232hHal::new()?.init_default()?; let mut i2c = ftdi.i2c()?; ```
```rust use embeddedhal::prelude::*; use ftd2xxembedded_hal::Ft232hHal;
let ftdi = Ft232hHal::new()?.init_default()?; let mut gpio = ftdi.ad6(); ```