ftdi-embedded-hal icon indicating copy to clipboard operation
ftdi-embedded-hal copied to clipboard

Implementation of Rust Embedded HAL traits for FTDI devices

Results 5 ftdi-embedded-hal issues
Sort by recently updated
recently updated
newest added

I use some STM32 micro controllers as slave and I need the I2C clock stretching functionality. Is it possible to have it supported by this library with a FT232H?

enhancement

First of all: do not merge this! This PR relates to issue https://github.com/ftdi-rs/ftdi-embedded-hal/issues/54 I've made a partial implementation of the bit-bang support required to make use of ports C and...

First of all, thank you for this very useful crate! I've encountered a problem: while I can work with the left-over GPIO pins on Port A (I²C) and B (SPI)...

bug

after `let device = libftd2xx::Ft232h::with_description("USB Serial Converter")?;` then `let hal = hal::FtHal::init_freq(device, 400_000)?;` got this error message ![image](https://github.com/ftdi-rs/ftdi-embedded-hal/assets/55091592/d754e890-e483-4cf1-bb93-5378f94d3487)

question

Lets say I have a struct which is supposed to store a generic `SpiDevice`: ```rust struct Foo { device: Box } ``` I then want to store a device into...