[feature] Add rcc register support for F3

This commit is contained in:
VasanthakumarV
2021-12-10 11:40:03 +05:30
parent e2c074d133
commit 3f33d307ff
2 changed files with 378 additions and 1 deletions

View File

@ -26,7 +26,7 @@ pub struct Clocks {
#[cfg(any(rcc_wl5, rcc_u5))]
pub apb3: Hertz,
#[cfg(any(rcc_l0, rcc_l1, rcc_f0, rcc_f1, rcc_f0x0, rcc_g0))]
#[cfg(any(rcc_l0, rcc_l1, rcc_f0, rcc_f1, rcc_f3, rcc_f0x0, rcc_g0))]
pub ahb: Hertz,
#[cfg(any(rcc_l4, rcc_f4, rcc_f7, rcc_h7, rcc_g4, rcc_u5, rcc_wb, rcc_wl5))]
@ -81,6 +81,9 @@ cfg_if::cfg_if! {
} else if #[cfg(rcc_f1)] {
mod f1;
pub use f1::*;
} else if #[cfg(rcc_f3)] {
mod f3;
pub use f3::*;
} else if #[cfg(rcc_f4)] {
mod f4;
pub use f4::*;