#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
mod generic;
pub use self::generic::*;
#[cfg(feature = "stm32f401")]
pub mod stm32f401;
#[cfg(feature = "stm32f405")]
pub mod stm32f405;
#[cfg(feature = "stm32f407")]
pub mod stm32f407;
#[cfg(feature = "stm32f410")]
pub mod stm32f410;
#[cfg(feature = "stm32f411")]
pub mod stm32f411;
#[cfg(feature = "stm32f412")]
pub mod stm32f412;
#[cfg(feature = "stm32f413")]
pub mod stm32f413;
#[cfg(feature = "stm32f427")]
pub mod stm32f427;
#[cfg(feature = "stm32f429")]
pub mod stm32f429;
#[cfg(feature = "stm32f446")]
pub mod stm32f446;
#[cfg(feature = "stm32f469")]
pub mod stm32f469;