We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf5d9b commit ccf4e47Copy full SHA for ccf4e47
src/rcc.rs
@@ -806,10 +806,10 @@ impl Rcc {
806
let cfgr2 = rcc.cfgr2().read();
807
debug!(
808
"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(),
+ cfgr2.hpre().variant(),
+ cfgr2.ppre1().variant(),
+ cfgr2.ppre2().variant(),
+ cfgr2.ppre3().variant(),
813
);
814
815
let pll1cfgr = rcc.pll1cfgr().read();
0 commit comments