#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
mod generic;
pub use self::generic::*;
#[cfg(feature = "stm32f730")]
pub mod stm32f730;
#[cfg(feature = "stm32f745")]
pub mod stm32f745;
#[cfg(feature = "stm32f750")]
pub mod stm32f750;
#[cfg(feature = "stm32f765")]
pub mod stm32f765;
#[cfg(feature = "stm32f7x2")]
pub mod stm32f7x2;
#[cfg(feature = "stm32f7x3")]
pub mod stm32f7x3;
#[cfg(feature = "stm32f7x6")]
pub mod stm32f7x6;
#[cfg(feature = "stm32f7x7")]
pub mod stm32f7x7;
#[cfg(feature = "stm32f7x9")]
pub mod stm32f7x9;