aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/lib.rs
diff options
context:
space:
mode:
authorThales Fragoso <[email protected]>2021-05-15 21:21:06 -0300
committerThales Fragoso <[email protected]>2021-05-15 21:21:06 -0300
commit0f5ba6d4a92b36f00a19116494017dda7ebfd9af (patch)
treed3dfb7f95002458af80919a3893cd47903bc1a9b /embassy-stm32/src/lib.rs
parent86063ac2a21200e79cae310416946f386950fc9c (diff)
SDMMC: Implement Default for Config and add docs
Diffstat (limited to 'embassy-stm32/src/lib.rs')
-rw-r--r--embassy-stm32/src/lib.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/embassy-stm32/src/lib.rs b/embassy-stm32/src/lib.rs
index 97d41f10a..29ea613f3 100644
--- a/embassy-stm32/src/lib.rs
+++ b/embassy-stm32/src/lib.rs
@@ -28,13 +28,6 @@ pub mod sdmmc_v2;
28#[cfg(feature = "_sdmmc_v2")] 28#[cfg(feature = "_sdmmc_v2")]
29pub use sdmmc_v2 as sdmmc; 29pub use sdmmc_v2 as sdmmc;
30 30
31pub mod time;
32
33#[cfg(feature = "stm32h750vb")]
34mod h7;
35#[cfg(feature = "stm32h750vb")]
36pub use h7::rcc;
37
38// This must go LAST so that it sees the `impl_foo!` macros 31// This must go LAST so that it sees the `impl_foo!` macros
39mod pac; 32mod pac;
40pub mod time; 33pub mod time;