Initial H7 sdmmc support

This commit is contained in:
Thales Fragoso
2021-05-01 21:19:14 -03:00
parent 180ca48d34
commit 0b607ca80a
375 changed files with 283257 additions and 2 deletions

View File

@@ -22,6 +22,19 @@ pub mod spi;
#[cfg(feature = "_usart")]
pub mod usart;
#[macro_use]
pub mod sdmmc_v2;
#[cfg(feature = "_sdmmc_v2")]
pub use sdmmc_v2 as sdmmc;
pub mod time;
#[cfg(feature = "stm32h750vb")]
mod h7;
#[cfg(feature = "stm32h750vb")]
pub use h7::rcc;
// This must go LAST so that it sees the `impl_foo!` macros
mod pac;
pub mod time;