summaryrefslogtreecommitdiff
path: root/examples/stm32f4/src/bin
diff options
context:
space:
mode:
authorThales Fragoso <thales.fragosoz@gmail.com>2021-07-28 17:32:36 -0300
committerThales Fragoso <thales.fragosoz@gmail.com>2021-07-29 18:43:15 -0300
commit5cfb9adad807954148310bb56ad98e74718ceca6 (patch)
treea2795928042322256f480c619c0be19a57f57b0d /examples/stm32f4/src/bin
parente7714983b3f6ff5084e1cb27bc4de794f98081fd (diff)
downloadembassy-5cfb9adad807954148310bb56ad98e74718ceca6.zip
f4-pll: Add max values per chip
Diffstat (limited to 'examples/stm32f4/src/bin')
-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 8d4be715..8ee6c1ef 100644
--- a/examples/stm32f4/src/bin/hello.rs
+++ b/examples/stm32f4/src/bin/hello.rs
@@ -19,7 +19,7 @@ mod example_common;
fn config() -> Config {
let mut rcc_config = RccConfig::default();
- rcc_config.sys_ck = Some(Hertz(32_000_000));
+ rcc_config.sys_ck = Some(Hertz(84_000_000));
rcc_config.enable_debug_wfe = true;
Config::default().rcc(rcc_config)