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

Following from issue: https://github.com/stm32-rs/stm32h7xx-hal/issues/382 The following code in certain circumstances yields a `BankError::PROGRAMMING_SEQUENCE`: ```rust let mut buffer: [u8; 256] = [0xFF; 256]; // ... fill buffer with data flash.erase_sector(Bank::UserBank2, 7).unwrap();...

I've noticed that in certain circumstances the flash controller returns `BankError::PROGRAMMING_SEQUENCE`. It doesn't seem to happen in all circumstances, but the following doesn't work for me within my application: ```rust...

I can't find any sense `Polarity` to be part of channel type because it doesn't affect on what traits and methods can be implemented on type. So I've removed `ActionLow`...

Use the prescaler to set the fastest ADC clock below or equal to this limit Addresses #374 TODO: - [ ] Don't use Boost mode below 20MHz? - [x] Helpful...

Hi, I've been trying to set the clock prescaler for the internal ADCs and found it to be rather cumbersome. The [adc initialization function](https://github.com/stm32-rs/stm32h7xx-hal/blob/71e2b75ceaa33e654271144af444c5a4c7dc85b7/src/adc.rs#L461) does not use or do anything...

bug

Update sdio-host version and improve eMMC support

can.rs:242 `impl Can { pub fn fdcan2( rb: FDCAN2, prec: rec::Fdcan, ) -> fdcan::FdCan { prec.enable(); // Enable APB1 peripheral clock` prec is taken and never returned The underlying trait...

wontfix

We're working with an STM32H735 discovery board and were very glad to discover the existing example that shows how to use the 16MB hyperram connected via the octospi2 peripheral. Connected...