stm32f4xx-hal icon indicating copy to clipboard operation
stm32f4xx-hal copied to clipboard

A Rust embedded-hal HAL for all MCUs in the STM32 F4 family

Results 121 stm32f4xx-hal issues
Sort by recently updated
recently updated
newest added

Draft for #721 cc @rursprung

In entry #692 I pointed out that in my experience the SDIO interface cannot be re-initialized. Unfortunately, no one has commented, confirmed or refuted this. I use RTIC in my...

Seems like the feature was disabled some time back: https://github.com/stm32-rs/stm32f4xx-hal/blame/0ffa14c6deb10e0f25d3300aa2b1f03baaa8b047/Cargo.toml#L225 Is there a reason for that and/or a chance that it will be supported?

In [`booster`](https://github.com/quartiq/booster), using the latest `master` causes our application to lock up and encounter watchdog resets. Backtraces consistently have pointed to some of the SPI functions as the root cause,...

Hi, Right now SPI mode is configured when initializing the SPI bus controller. But in a shared SPI bus each device might require a different SPI mode. Please provide an...

This PR adds a function called `set_center_aligned_mode_selection()` to allow `CMS` selection. Using center aligned mode reduces current harmonics when driving a motor, and allows predictable ADC sampling of motor current...

in Cargo.toml, I try to include both "usb_fs" and "usb_hs" like ``` stm32f4xx-hal = { version = "0.17.1", features = [ "stm32f405", "rtic", "rtic-monotonic", "usb_fs", "usb_hs", "synopsys-usb-otg", "i2s", "sdio-host", ]...