From d37d714314093747c9042faefcc3a22e2bfee59d Mon Sep 17 00:00:00 2001 From: Matous Hybl Date: Tue, 8 Feb 2022 14:32:18 +0100 Subject: stm32: Add support for FMC --- examples/stm32h7/src/example_common.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/stm32h7/src/example_common.rs') diff --git a/examples/stm32h7/src/example_common.rs b/examples/stm32h7/src/example_common.rs index 524bee6d9..b8acc2790 100644 --- a/examples/stm32h7/src/example_common.rs +++ b/examples/stm32h7/src/example_common.rs @@ -22,6 +22,7 @@ defmt::timestamp! {"{=u64}", { pub fn config() -> Config { let mut config = Config::default(); config.rcc.sys_ck = Some(400.mhz().into()); + config.rcc.hclk = Some(200.mhz().into()); config.rcc.pll1.q_ck = Some(100.mhz().into()); config } -- cgit