embassy/embassy-stm32/src/lib.rs

68 lines
1.3 KiB
Rust
Raw Normal View History

#![no_std]
#![feature(generic_associated_types)]
#![feature(asm)]
#![feature(min_type_alias_impl_trait)]
#![feature(impl_trait_in_bindings)]
#![feature(type_alias_impl_trait)]
#![allow(incomplete_features)]
2021-04-23 23:47:34 +02:00
// This must go FIRST so that all the other modules see its macros.
pub mod fmt;
#[cfg(feature = "_timer")]
pub mod clock;
2021-05-10 01:20:04 +02:00
#[cfg(feature = "_dma")]
pub mod dma;
2021-04-10 01:48:12 +02:00
pub mod exti;
2021-04-06 01:31:29 +02:00
pub mod gpio;
2021-05-21 03:08:07 +02:00
pub mod pwr;
pub mod rcc;
#[cfg(feature = "_rng")]
2021-04-26 20:11:46 +02:00
pub mod rng;
#[cfg(feature = "_sdmmc")]
pub mod sdmmc;
#[cfg(feature = "_spi")]
2021-05-10 21:21:57 +02:00
pub mod spi;
#[cfg(feature = "_usart")]
pub mod usart;
2021-04-26 20:11:46 +02:00
2021-04-23 23:47:34 +02:00
// This must go LAST so that it sees the `impl_foo!` macros
#[cfg(feature = "pac")]
2021-05-18 02:35:29 +02:00
pub mod pac;
#[cfg(not(feature = "pac"))]
mod pac;
2021-05-12 20:18:42 +02:00
pub mod time;
2021-05-10 21:21:57 +02:00
2021-05-01 03:07:17 +02:00
pub use embassy_macros::interrupt;
pub use pac::{interrupt, peripherals, Peripherals};
// workaround for svd2rust-generated code using `use crate::generic::*;`
pub(crate) use pac::regs::generic;
2021-05-01 03:07:17 +02:00
#[non_exhaustive]
pub struct Config {
rcc: rcc::Config,
2021-05-01 03:07:17 +02:00
}
impl Default for Config {
fn default() -> Self {
Self {
rcc: Default::default(),
}
2021-05-01 03:07:17 +02:00
}
}
/// Initialize embassy.
pub fn init(config: Config) -> Peripherals {
2021-05-01 03:07:17 +02:00
let p = Peripherals::take();
unsafe {
dma::init();
2021-05-20 10:44:58 +02:00
pac::init_exti();
rcc::init(config.rcc);
2021-05-01 03:07:17 +02:00
}
p
}