H7: Add initial PLL configuration

This commit is contained in:
Thales Fragoso
2021-05-17 21:35:29 -03:00
parent 7e388fcf58
commit 054f0d51dc
4 changed files with 183 additions and 2 deletions

View File

@ -13,6 +13,7 @@ pub mod fmt;
pub mod dma;
pub mod exti;
pub mod gpio;
mod rcc;
#[cfg(feature = "_rng")]
pub mod rng;
#[cfg(feature = "_sdmmc")]
@ -23,8 +24,7 @@ pub mod spi;
pub mod usart;
// This must go LAST so that it sees the `impl_foo!` macros
mod pac;
pub mod pac;
pub mod time;
pub use embassy_macros::interrupt;