You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve f247 PLL output frequency calculation precision
This will produce the correct result for all integer output frequencies
and a truncated result for all non-integer output frequencies instead of
accumulating an error.
This is done by introducing a time::Scale type which is just a rational
representing the numerator <-> denominator relationship of a scaling
factor register.
Copy file name to clipboardExpand all lines: embassy-stm32/CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
- Add I2S support for STM32F1, STM32C0, STM32F0, STM32F3, STM32F7, STM32G0, STM32WL, STM32H5, STM32H7RS
16
16
- fix: STM32: Prevent dropped DacChannel from disabling Dac peripheral if another DacChannel is still in scope ([#4577](https://github.com/embassy-rs/embassy/pull/4577))
17
17
- feat: Added support for more OctoSPI configurations (e.g. APS6408 RAM) ([#4581](https://github.com/embassy-rs/embassy/pull/4581))
18
+
- Improve the PLL output frequency calculation precision for the F2, F4, and F7
0 commit comments