Enable SYSCFG clock in exti::init()

This commit is contained in:
Timo Kröger
2021-07-22 23:12:07 +02:00
committed by Dario Nieuwenhuis
parent ad7a1f1453
commit 06fb2a7a80
8 changed files with 6 additions and 39 deletions

View File

@@ -24,10 +24,6 @@ fn main() -> ! {
w.set_dbg_standby(true);
w.set_dbg_stop(true);
});
pac::RCC.apb2enr().modify(|w| {
w.set_syscfgen(true);
});
}
let p = embassy_stm32::init(Default::default());