Skip to content

Commit ccf4e47

Browse files
committed
Fix errors due to new pac
1 parent 3cf5d9b commit ccf4e47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/rcc.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -806,10 +806,10 @@ impl Rcc {
806806
let cfgr2 = rcc.cfgr2().read();
807807
debug!(
808808
"CFGR2 register: HPRE={:?} PPRE1={:?} PPRE2={:?} PPRE3={:?}",
809-
cfgr2.hpre().variant().unwrap(),
810-
cfgr2.ppre1().variant().unwrap(),
811-
cfgr2.ppre2().variant().unwrap(),
812-
cfgr2.ppre3().variant().unwrap(),
809+
cfgr2.hpre().variant(),
810+
cfgr2.ppre1().variant(),
811+
cfgr2.ppre2().variant(),
812+
cfgr2.ppre3().variant(),
813813
);
814814

815815
let pll1cfgr = rcc.pll1cfgr().read();

0 commit comments

Comments
 (0)