stm32/rcc: print actual freqs on boot.

This commit is contained in:
Dario Nieuwenhuis
2023-01-20 16:31:04 +01:00
parent 539a8107e2
commit f604153f05
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@
/// Hertz
#[derive(PartialEq, PartialOrd, Clone, Copy, Debug, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub struct Hertz(pub u32);
impl Hertz {