aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-06-14 20:30:02 +0200
committerGitHub <[email protected]>2021-06-14 20:30:02 +0200
commitceb5d92da3b19ff3af3d4e0c42b823e25c930353 (patch)
tree4357c24d1bdc1946abd617f60eb90e2fbf3413cf
parentfd24677f84e68b042ebcbbc010a0f31dd4278757 (diff)
parent4b406dd107b1f3debe98808f2fcc491cfa4cb877 (diff)
Merge pull request #246 from lulf/remove-default-rcc
Remove default rcc impl
-rw-r--r--embassy-stm32/src/rcc/mod.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/embassy-stm32/src/rcc/mod.rs b/embassy-stm32/src/rcc/mod.rs
index 48bdb3de6..096ba6b95 100644
--- a/embassy-stm32/src/rcc/mod.rs
+++ b/embassy-stm32/src/rcc/mod.rs
@@ -60,11 +60,6 @@ cfg_if::cfg_if! {
60 } else if #[cfg(rcc_wb55)] { 60 } else if #[cfg(rcc_wb55)] {
61 mod wb55; 61 mod wb55;
62 pub use wb55::*; 62 pub use wb55::*;
63 } else {
64 #[derive(Default)]
65 pub struct Config {}
66 pub unsafe fn init(_config: Config) {
67 }
68 } 63 }
69} 64}
70 65