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-04-23 21:47:34 +00:00
|
|
|
pub(crate) use stm32_metapac as pac;
|
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-05 23:31:29 +00:00
|
|
|
//pub mod interrupt;
|
2021-04-25 20:35:51 +00:00
|
|
|
#[macro_use]
|
|
|
|
pub mod usart;
|
2021-04-05 23:31:29 +00:00
|
|
|
|
2021-04-23 21:47:34 +00:00
|
|
|
// This must go LAST so that it sees the `impl_foo!` macros
|
|
|
|
mod chip;
|
|
|
|
pub use chip::{peripherals, Peripherals};
|