H7 RCC: Fix off by one error

This commit is contained in:
Thales Fragoso 2021-05-20 23:21:22 -03:00
parent f5860c3c4c
commit 2605dabca3

View file

@ -83,7 +83,6 @@ impl<'d> Rcc<'d> {
}
}
// TODO: FLASH and PWR
/// Freeze the core clocks, returning a Core Clocks Distribution
/// and Reset (CCDR) structure. The actual frequency of the clocks
/// configured is returned in the `clocks` member of the CCDR
@ -419,7 +418,7 @@ impl<'d> Rcc<'d> {
_ => (0b111, 16),
};
let real_pclk = hclk / u32::from(ppre);
assert!(real_pclk < max_pclk);
assert!(real_pclk <= max_pclk);
let tim_ker_clk = if let Some(tim_pre) = tim_pre {
let clk = match (bits, tim_pre) {