Add MCO support for stm32wl family

This commit is contained in:
shakencodes
2023-10-06 14:36:16 -07:00
parent f30fc949ff
commit 68c4820dde
3 changed files with 25 additions and 34 deletions

View File

@ -7,9 +7,9 @@ use crate::time::Hertz;
pub(crate) mod bd;
mod bus;
#[cfg(any(stm32h5, stm32h7))]
#[cfg(any(stm32h5, stm32h7, stm32wl))]
mod mco;
#[cfg(any(stm32h5, stm32h7))]
#[cfg(any(stm32h5, stm32h7, stm32wl))]
pub use mco::*;
#[cfg_attr(rcc_f0, path = "f0.rs")]