Update stm32-data and rename RTC to Clock

This commit is contained in:
Thales Fragoso
2021-05-23 17:09:11 -03:00
parent 90b25e70d7
commit 66f232574a
3 changed files with 20 additions and 22 deletions

View File

@@ -9,6 +9,8 @@
// This must go FIRST so that all the other modules see its macros.
pub mod fmt;
#[cfg(feature = "_timer")]
pub mod clock;
#[cfg(feature = "_dma")]
pub mod dma;
pub mod exti;
@@ -17,8 +19,6 @@ pub mod pwr;
pub mod rcc;
#[cfg(feature = "_rng")]
pub mod rng;
#[cfg(feature = "_timer")]
pub mod rtc;
#[cfg(feature = "_sdmmc")]
pub mod sdmmc;
#[cfg(feature = "_spi")]