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)]
|
|
|
|
|
|
|
|
pub mod fmt;
|
|
|
|
|
2021-04-05 23:31:29 +00:00
|
|
|
mod chip;
|
|
|
|
pub use chip::{peripherals, Peripherals};
|
|
|
|
|
2021-04-09 23:48:12 +00:00
|
|
|
pub mod exti;
|
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-20 01:37:49 +00:00
|
|
|
//pub mod usart;
|
2021-04-05 23:31:29 +00:00
|
|
|
|
|
|
|
pub(crate) use stm32_metapac as pac;
|