stm32f7xx-hal
stm32f7xx-hal copied to clipboard
A Rust embedded-hal HAL for all MCUs in the STM32 F7 family
Results
32
stm32f7xx-hal issues
Sort by
recently updated
recently updated
newest added
Very strange things occur on release build: when `sysclk` is greater that `pclk1`, for example: ```rust let clocks = rcc.cfgr.sysclk(96.MHz()).pclk1(48.MHz()).freeze(); ``` led does not flashing, but debug build is fine....
Background: Several peripheral init methods require a const ref to a Clocks struct, to ensure the clocks have been set up and to figure out what frequencies to use as...