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

Peripheral access API for STM32H7 series microcontrollers

Results 75 stm32h7xx-hal issues
Sort by recently updated
recently updated
newest added

Hello, I'm wondering if its possible to run I2S over SPI? For example, I have the `SPI2` peripheral with pins `PA9` for SCK and `PC1` for MOSI. Within the Cube...

When writing to uninitialized RAM and then rebooting the device, upon reading the memory back sometimes various bytes can be deformed. Apparently this is due to how ECC RAM for...

- [x] Use released version of embedded-hal v1.0 (when released) - [ ] ~Use released version of `stm32-fmc` (when released)~ Not required - [ ] Review I2C `transaction` implementation -...

## Background The company that I am working at requires PTP leader/follower support on an STM32 H7 series microcontroller. This PR adds PTP support for the H7. It is a...

It looks like [embedded-hal v1.0.0](https://crates.io/crates/embedded-hal/versions) is approaching a release :tada: . Within a reasonable time frame after release (3 months? 12 months?) this crate should be updated to use v1.0.0....

Is it possible to do a normal SPI write before starting a DMA transfer? I am trying to use DMA to write the frame buffer to an OLED display (SSD1322),...

I want to get the configred clocks for timer TIM2 on my stm32h743vgt6. This `let clk = ccdr.peripheral.TIM2::get_clk(&ccdr.clocks).unwrap().raw();` produces an error: ``` error: expected ` src/main.rs:176:41 | 176 | let...

On the hardware, I use external high-speed crystal oscillator 50MHz, the program set pll1_q_ck 10MHz, SPI 1MHz, do not use hardware CS, CS use ordinary GPIO push-pull output. After initializing...

I've noticed that the FAT32 adapter for the [sdmmc-embedded crate](https://github.com/rust-embedded-community/embedded-sdmmc-rs) was added to the `sdmmc.rs` source file. I would suggest we move this into its own dedicated file, such as...