#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
mod generic;
pub use self::generic::*;
#[cfg(feature = "stm32l412")]
pub mod stm32l412;
#[cfg(feature = "stm32l4p5")]
pub mod stm32l4p5;
#[cfg(feature = "stm32l4r5")]
pub mod stm32l4r5;
#[cfg(feature = "stm32l4r9")]
pub mod stm32l4r9;
#[cfg(feature = "stm32l4x1")]
pub mod stm32l4x1;
#[cfg(feature = "stm32l4x2")]
pub mod stm32l4x2;
#[cfg(feature = "stm32l4x3")]
pub mod stm32l4x3;
#[cfg(feature = "stm32l4x5")]
pub mod stm32l4x5;
#[cfg(feature = "stm32l4x6")]
pub mod stm32l4x6;