embassy/embassy-stm32/src/lib.rs

112 lines
2.0 KiB
Rust
Raw Normal View History

#![no_std]
#![feature(generic_associated_types)]
#![feature(asm)]
#![feature(type_alias_impl_trait)]
#[cfg(feature = "unstable-pac")]
pub use stm32_metapac as pac;
#[cfg(not(feature = "unstable-pac"))]
pub(crate) use stm32_metapac as pac;
2021-04-23 23:47:34 +02:00
// This must go FIRST so that all the other modules see its macros.
pub mod fmt;
// Utilities
pub mod interrupt;
pub mod time;
// Always-present hardware
2021-07-15 05:42:06 +02:00
pub mod dma;
2021-04-06 01:31:29 +02:00
pub mod gpio;
pub mod rcc;
#[cfg(feature = "_time-driver")]
mod time_driver;
// Sometimes-present hardware
2021-07-08 20:55:27 +02:00
2021-06-10 21:33:43 +02:00
#[cfg(adc)]
pub mod adc;
#[cfg(can)]
pub mod can;
2021-05-28 19:31:40 +02:00
#[cfg(dac)]
pub mod dac;
#[cfg(dbgmcu)]
pub mod dbgmcu;
2021-06-14 23:30:11 +02:00
#[cfg(all(eth, feature = "net"))]
pub mod eth;
2021-06-25 01:00:51 +02:00
#[cfg(exti)]
2021-06-25 00:36:42 +02:00
pub mod exti;
#[cfg(i2c)]
2021-05-24 17:41:37 +02:00
pub mod i2c;
2021-09-27 01:46:17 +02:00
#[cfg(crc)]
pub mod crc;
2021-08-02 17:34:41 +02:00
#[cfg(pwr)]
2021-05-21 03:08:07 +02:00
pub mod pwr;
#[cfg(rng)]
2021-04-26 20:11:46 +02:00
pub mod rng;
#[cfg(sdmmc)]
pub mod sdmmc;
#[cfg(spi)]
2021-05-10 21:21:57 +02:00
pub mod spi;
#[cfg(usart)]
pub mod usart;
2021-09-29 16:10:20 +02:00
//#[cfg(pwm)]
pub mod pwm;
2021-04-26 20:11:46 +02:00
#[cfg(feature = "subghz")]
pub mod subghz;
// This must go last, so that it sees all the impl_foo! macros defined earlier.
mod generated {
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(non_snake_case)]
2021-05-10 21:21:57 +02:00
use crate::interrupt;
include!(concat!(env!("OUT_DIR"), "/generated.rs"));
}
pub use embassy_macros::interrupt;
pub use generated::{peripherals, Peripherals};
2021-05-01 03:07:17 +02:00
#[non_exhaustive]
pub struct Config {
pub rcc: rcc::Config,
pub enable_debug_during_sleep: bool,
}
2021-05-01 03:07:17 +02:00
impl Default for Config {
fn default() -> Self {
Self {
rcc: Default::default(),
enable_debug_during_sleep: true,
}
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 {
if config.enable_debug_during_sleep {
dbgmcu::Dbgmcu::enable_all();
}
2021-07-22 20:38:45 +02:00
gpio::init();
dma::init();
2021-06-25 01:00:51 +02:00
#[cfg(exti)]
exti::init();
2021-07-06 15:54:55 +02:00
rcc::init(config.rcc);
// must be after rcc init
#[cfg(feature = "_time-driver")]
time_driver::init();
2021-05-01 03:07:17 +02:00
}
p
}