aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2021-05-26 21:46:57 +0200
committerUlf Lilleengen <[email protected]>2021-05-26 21:46:57 +0200
commit6eaf224fec205171019fa31407ea42cfd71ae5a1 (patch)
tree31c1738c2fc295432c8161759fcfe970cb559fce
parentbfa999a2e0e9ef7ef8984ac213d73bda004320cd (diff)
No more systemclock
-rw-r--r--embassy-stm32/src/rcc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/rcc/mod.rs b/embassy-stm32/src/rcc/mod.rs
index 2ede725a1..f15cee7f6 100644
--- a/embassy-stm32/src/rcc/mod.rs
+++ b/embassy-stm32/src/rcc/mod.rs
@@ -8,7 +8,7 @@ cfg_if::cfg_if! {
8 } else { 8 } else {
9 #[derive(Default)] 9 #[derive(Default)]
10 pub struct Config {} 10 pub struct Config {}
11 pub unsafe fn init(_config: Config) -> SystemClock { 11 pub unsafe fn init(_config: Config) {
12 } 12 }
13 } 13 }
14} 14}