Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
xoviat committed Oct 12, 2023
1 parent 7810ef1 commit c8aa9c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions embassy-stm32/src/rcc/h.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ pub(crate) unsafe fn init(config: Config) {
rtc,

#[cfg(stm32h5)]
mux_rcc_pclk1: None,
mux_rcc_pclk1: Some(apb1),
#[cfg(stm32h5)]
mux_pll2_q: None,
#[cfg(stm32h5)]
Expand All @@ -574,7 +574,7 @@ pub(crate) unsafe fn init(config: Config) {
#[cfg(all(not(rcc_h5), stm32h5))]
mux_pll3_r: None,
#[cfg(stm32h5)]
mux_rcc_pclk3: None,
mux_rcc_pclk3: Some(apb3),
#[cfg(stm32h5)]
mux_pll3_1: None,
#[cfg(stm32h5)]
Expand All @@ -584,7 +584,7 @@ pub(crate) unsafe fn init(config: Config) {
#[cfg(stm32h5)]
mux_pll2_r: pll2.r,
#[cfg(stm32h5)]
mux_rcc_pclk2: None,
mux_rcc_pclk2: Some(apb2),
#[cfg(stm32h5)]
mux_rcc_pclk4: None,
#[cfg(stm32h5)]
Expand Down

0 comments on commit c8aa9c3

Please sign in to comment.