stm32/rcc: add rtc to f410

This commit is contained in:
xoviat 2023-08-21 18:10:10 -05:00
parent 7148397771
commit 5bfddfc9b6

View File

@ -74,7 +74,7 @@ pub struct Clocks {
#[cfg(any(rcc_h5, rcc_h50, rcc_h7, rcc_h7ab))] #[cfg(any(rcc_h5, rcc_h50, rcc_h7, rcc_h7ab))]
pub adc: Option<Hertz>, pub adc: Option<Hertz>,
#[cfg(any(rcc_wb, rcc_f4))] #[cfg(any(rcc_wb, rcc_f4, rcc_f410))]
/// Set only if the lsi or lse is configured /// Set only if the lsi or lse is configured
pub rtc: Option<Hertz>, pub rtc: Option<Hertz>,
} }