2021-03-19 15:26:20 -05:00
|
|
|
#![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-05-25 04:17:24 +02:00
|
|
|
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.
|
2021-03-19 15:26:20 -05:00
|
|
|
pub mod fmt;
|
|
|
|
|
2021-05-25 04:17:24 +02:00
|
|
|
// Utilities
|
|
|
|
pub mod interrupt;
|
|
|
|
pub mod time;
|
|
|
|
|
|
|
|
// Always-present hardware
|
2021-04-06 01:31:29 +02:00
|
|
|
pub mod gpio;
|
2021-05-25 04:17:24 +02:00
|
|
|
pub mod rcc;
|
|
|
|
|
|
|
|
// Sometimes-present hardware
|
2021-07-08 14:55:27 -04:00
|
|
|
#[cfg(any(dma, bdma, dmamux))]
|
|
|
|
pub mod dma_traits;
|
|
|
|
|
2021-06-10 15:33:43 -04:00
|
|
|
#[cfg(adc)]
|
|
|
|
pub mod adc;
|
2021-07-03 17:58:59 -03:00
|
|
|
#[cfg(bdma)]
|
|
|
|
pub mod bdma;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(timer)]
|
|
|
|
pub mod clock;
|
2021-05-28 13:31:40 -04:00
|
|
|
#[cfg(dac)]
|
|
|
|
pub mod dac;
|
2021-07-08 14:55:27 -04:00
|
|
|
#[cfg(dma)]
|
2021-05-25 04:17:24 +02:00
|
|
|
pub mod dma;
|
2021-07-02 09:54:31 -04:00
|
|
|
#[cfg(dmamux)]
|
|
|
|
pub mod dmamux;
|
2021-06-14 18:30:11 -03:00
|
|
|
#[cfg(all(eth, feature = "net"))]
|
2021-06-07 02:30:38 -03:00
|
|
|
pub mod eth;
|
2021-06-24 20:00:51 -03:00
|
|
|
#[cfg(exti)]
|
2021-06-24 19:36:42 -03:00
|
|
|
pub mod exti;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(i2c)]
|
2021-05-24 11:41:37 -04:00
|
|
|
pub mod i2c;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(pwr)]
|
2021-05-20 22:08:07 -03:00
|
|
|
pub mod pwr;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(rng)]
|
2021-04-26 14:11:46 -04:00
|
|
|
pub mod rng;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(sdmmc)]
|
2021-05-17 02:04:51 +02:00
|
|
|
pub mod sdmmc;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(spi)]
|
2021-05-10 15:21:57 -04:00
|
|
|
pub mod spi;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(usart)]
|
2021-05-06 03:59:16 +02:00
|
|
|
pub mod usart;
|
2021-04-26 14:11:46 -04:00
|
|
|
|
2021-05-25 04:17:24 +02:00
|
|
|
// This must go last, so that it sees all the impl_foo! macros defined earlier.
|
|
|
|
mod generated {
|
2021-05-22 15:22:00 -03:00
|
|
|
|
2021-05-25 04:17:24 +02:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_imports)]
|
|
|
|
#![allow(non_snake_case)]
|
2021-05-10 15:21:57 -04:00
|
|
|
|
2021-05-25 04:17:24 +02:00
|
|
|
use crate::interrupt;
|
2021-05-06 03:43:46 +02:00
|
|
|
|
2021-05-25 04:17:24 +02:00
|
|
|
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 {
|
2021-05-25 13:30:42 +02:00
|
|
|
rcc: rcc::Config,
|
2021-05-01 03:07:17 +02:00
|
|
|
}
|
|
|
|
|
2021-05-25 17:09:01 +02:00
|
|
|
impl Config {
|
2021-05-27 10:01:40 +02:00
|
|
|
pub fn rcc(mut self, rcc: rcc::Config) -> Self {
|
|
|
|
self.rcc = rcc;
|
|
|
|
self
|
2021-05-25 17:09:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-01 03:07:17 +02:00
|
|
|
impl Default for Config {
|
|
|
|
fn default() -> Self {
|
2021-05-25 13:30:42 +02:00
|
|
|
Self {
|
|
|
|
rcc: Default::default(),
|
|
|
|
}
|
2021-05-01 03:07:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize embassy.
|
2021-05-25 13:30:42 +02:00
|
|
|
pub fn init(config: Config) -> Peripherals {
|
2021-05-01 03:07:17 +02:00
|
|
|
let p = Peripherals::take();
|
|
|
|
|
|
|
|
unsafe {
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(dma)]
|
2021-05-17 02:04:51 +02:00
|
|
|
dma::init();
|
2021-07-03 17:58:59 -03:00
|
|
|
#[cfg(bdma)]
|
|
|
|
bdma::init();
|
2021-07-06 09:54:55 -04:00
|
|
|
#[cfg(dmamux)]
|
|
|
|
dmamux::init();
|
2021-06-24 20:00:51 -03:00
|
|
|
#[cfg(exti)]
|
2021-06-03 14:25:17 -04:00
|
|
|
exti::init();
|
2021-07-06 09:54:55 -04:00
|
|
|
|
2021-05-25 13:30:42 +02:00
|
|
|
rcc::init(config.rcc);
|
2021-05-01 03:07:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p
|
|
|
|
}
|