2021-03-19 20:26:20 +00: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 21:47:34 +00:00
|
|
|
// This must go FIRST so that all the other modules see its macros.
|
2021-03-19 20:26:20 +00:00
|
|
|
pub mod fmt;
|
|
|
|
|
2021-05-01 01:07:17 +00:00
|
|
|
use embassy::interrupt::{Interrupt, InterruptExt};
|
2021-05-05 17:12:53 +00:00
|
|
|
//pub(crate) use stm32_metapac as pac;
|
|
|
|
|
2021-05-05 17:15:07 +00:00
|
|
|
pub(crate) mod pac {
|
2021-05-05 17:12:53 +00:00
|
|
|
pub use stm32_metapac::*;
|
|
|
|
|
|
|
|
#[cfg(any(feature = "_syscfg_f4"))]
|
|
|
|
pub use stm32_metapac::syscfg_f4 as syscfg;
|
|
|
|
|
|
|
|
#[cfg(any(feature = "_syscfg_l4"))]
|
|
|
|
pub use stm32_metapac::syscfg_l4 as syscfg;
|
|
|
|
}
|
|
|
|
|
2021-04-05 23:31:29 +00:00
|
|
|
|
2021-04-23 21:47:34 +00:00
|
|
|
#[macro_use]
|
2021-04-09 23:48:12 +00:00
|
|
|
pub mod exti;
|
2021-04-23 21:47:34 +00:00
|
|
|
#[macro_use]
|
2021-04-05 23:31:29 +00:00
|
|
|
pub mod gpio;
|
2021-04-09 23:48:12 +00:00
|
|
|
//pub mod rtc;
|
2021-04-25 20:35:51 +00:00
|
|
|
#[macro_use]
|
|
|
|
pub mod usart;
|
2021-04-05 23:31:29 +00:00
|
|
|
|
2021-04-26 18:11:46 +00:00
|
|
|
#[macro_use]
|
|
|
|
pub mod rng;
|
|
|
|
|
2021-04-23 21:47:34 +00:00
|
|
|
// This must go LAST so that it sees the `impl_foo!` macros
|
|
|
|
mod chip;
|
2021-05-01 01:07:17 +00:00
|
|
|
pub use chip::{interrupt, peripherals, Peripherals};
|
|
|
|
pub use embassy_macros::interrupt;
|
|
|
|
|
|
|
|
#[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();
|
|
|
|
}
|
|
|
|
|
|
|
|
p
|
|
|
|
}
|