address rustfmt ci check

This commit is contained in:
Rick Rogers 2025-07-25 12:10:17 -04:00
parent 33fc82a455
commit 3a30458b25
No known key found for this signature in database
GPG Key ID: 81A2B5FD9B4E4436

View File

@ -1,5 +1,8 @@
use core::ops::RangeInclusive;
#[cfg(stm32h7rs)]
use stm32_metapac::rcc::vals::Plldivst;
use crate::pac;
pub use crate::pac::rcc::vals::{
Hsidiv as HSIPrescaler, Plldiv as PllDiv, Pllm as PllPreDiv, Plln as PllMul, Pllsrc as PllSource, Sw as Sysclk,
@ -8,9 +11,6 @@ use crate::pac::rcc::vals::{Pllrge, Pllvcosel, Timpre};
use crate::pac::{FLASH, PWR, RCC};
use crate::time::Hertz;
#[cfg(stm32h7rs)]
use stm32_metapac::rcc::vals::Plldivst;
/// HSI speed
pub const HSI_FREQ: Hertz = Hertz(64_000_000);