#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
mod generic;
pub use self::generic::*;
#[cfg(feature = "stm32f722")]
pub mod stm32f722;
#[cfg(feature = "stm32f723")]
pub mod stm32f723;
#[cfg(feature = "stm32f730")]
pub mod stm32f730;
#[cfg(feature = "stm32f732")]
pub mod stm32f732;
#[cfg(feature = "stm32f733")]
pub mod stm32f733;
#[cfg(feature = "stm32f745")]
pub mod stm32f745;
#[cfg(feature = "stm32f746")]
pub mod stm32f746;
#[cfg(feature = "stm32f750")]
pub mod stm32f750;
#[cfg(feature = "stm32f756")]
pub mod stm32f756;
#[cfg(feature = "stm32f765")]
pub mod stm32f765;
#[cfg(feature = "stm32f767")]
pub mod stm32f767;
#[cfg(feature = "stm32f769")]
pub mod stm32f769;
#[cfg(feature = "stm32f777")]
pub mod stm32f777;
#[cfg(feature = "stm32f778")]
pub mod stm32f778;
#[cfg(feature = "stm32f779")]
pub mod stm32f779;