aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32f4/src/bin/hello.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32f4/src/bin/hello.rs b/examples/stm32f4/src/bin/hello.rs
index 8d4be7150..8ee6c1ef8 100644
--- a/examples/stm32f4/src/bin/hello.rs
+++ b/examples/stm32f4/src/bin/hello.rs
@@ -19,7 +19,7 @@ mod example_common;
19 19
20fn config() -> Config { 20fn config() -> Config {
21 let mut rcc_config = RccConfig::default(); 21 let mut rcc_config = RccConfig::default();
22 rcc_config.sys_ck = Some(Hertz(32_000_000)); 22 rcc_config.sys_ck = Some(Hertz(84_000_000));
23 rcc_config.enable_debug_wfe = true; 23 rcc_config.enable_debug_wfe = true;
24 24
25 Config::default().rcc(rcc_config) 25 Config::default().rcc(rcc_config)