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-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-01 03:07:17 +02:00
|
|
|
use embassy::interrupt::{Interrupt, InterruptExt};
|
2021-04-06 01:31:29 +02:00
|
|
|
|
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-06 03:59:16 +02:00
|
|
|
#[cfg(feature = "_rng")]
|
2021-04-26 14:11:46 -04:00
|
|
|
pub mod rng;
|
2021-05-13 14:28:53 -04:00
|
|
|
#[cfg(feature = "_spi")]
|
2021-05-10 15:21:57 -04:00
|
|
|
pub mod spi;
|
2021-05-06 14:33:29 -04:00
|
|
|
#[cfg(feature = "_usart")]
|
2021-05-06 03:59:16 +02:00
|
|
|
pub mod usart;
|
2021-04-26 14:11:46 -04:00
|
|
|
|
2021-05-01 21:19:14 -03:00
|
|
|
#[macro_use]
|
|
|
|
pub mod sdmmc_v2;
|
|
|
|
|
|
|
|
#[cfg(feature = "_sdmmc_v2")]
|
|
|
|
pub use sdmmc_v2 as sdmmc;
|
|
|
|
|
2021-04-23 23:47:34 +02:00
|
|
|
// This must go LAST so that it sees the `impl_foo!` macros
|
2021-05-06 03:43:46 +02:00
|
|
|
mod pac;
|
2021-05-12 14:18:42 -04:00
|
|
|
pub mod time;
|
2021-05-10 15:21:57 -04:00
|
|
|
|
2021-05-14 10:11:43 -04:00
|
|
|
pub use embassy_macros;
|
2021-05-01 03:07:17 +02:00
|
|
|
pub use embassy_macros::interrupt;
|
2021-05-14 10:11:43 -04:00
|
|
|
pub use embassy_macros::interrupt as irq;
|
2021-05-06 03:43:46 +02:00
|
|
|
pub use pac::{interrupt, peripherals, Peripherals};
|
|
|
|
|
|
|
|
// workaround for svd2rust-generated code using `use crate::generic::*;`
|
|
|
|
pub(crate) use pac::generic;
|
2021-05-01 03:07:17 +02:00
|
|
|
|
|
|
|
#[non_exhaustive]
|
|
|
|
pub struct Config {
|
|
|
|
_private: (),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Config {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self { _private: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize embassy.
|
|
|
|
pub fn init(_config: Config) -> Peripherals {
|
|
|
|
let p = Peripherals::take();
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
interrupt::EXTI0::steal().enable();
|
|
|
|
interrupt::EXTI1::steal().enable();
|
|
|
|
interrupt::EXTI2::steal().enable();
|
|
|
|
interrupt::EXTI3::steal().enable();
|
|
|
|
interrupt::EXTI4::steal().enable();
|
|
|
|
interrupt::EXTI9_5::steal().enable();
|
|
|
|
interrupt::EXTI15_10::steal().enable();
|
2021-05-16 02:57:46 +02:00
|
|
|
interrupt::EXTI15_10::steal().enable();
|
|
|
|
|
|
|
|
interrupt::DMA1_Stream0::steal().enable();
|
|
|
|
interrupt::DMA1_Stream1::steal().enable();
|
|
|
|
interrupt::DMA1_Stream2::steal().enable();
|
|
|
|
interrupt::DMA1_Stream3::steal().enable();
|
|
|
|
interrupt::DMA1_Stream4::steal().enable();
|
|
|
|
interrupt::DMA1_Stream5::steal().enable();
|
|
|
|
interrupt::DMA1_Stream6::steal().enable();
|
|
|
|
interrupt::DMA1_Stream7::steal().enable();
|
|
|
|
interrupt::DMA2_Stream0::steal().enable();
|
|
|
|
interrupt::DMA2_Stream1::steal().enable();
|
|
|
|
interrupt::DMA2_Stream2::steal().enable();
|
|
|
|
interrupt::DMA2_Stream3::steal().enable();
|
|
|
|
interrupt::DMA2_Stream4::steal().enable();
|
|
|
|
interrupt::DMA2_Stream5::steal().enable();
|
|
|
|
interrupt::DMA2_Stream6::steal().enable();
|
|
|
|
interrupt::DMA2_Stream7::steal().enable();
|
2021-05-01 03:07:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p
|
|
|
|
}
|