#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
mod generic;
pub use self::generic::*;
#[cfg(feature = "stm32g030")]
pub mod stm32g030;
#[cfg(feature = "stm32g031")]
pub mod stm32g031;
#[cfg(feature = "stm32g041")]
pub mod stm32g041;
#[cfg(feature = "stm32g050")]
pub mod stm32g050;
#[cfg(feature = "stm32g051")]
pub mod stm32g051;
#[cfg(feature = "stm32g061")]
pub mod stm32g061;
#[cfg(feature = "stm32g070")]
pub mod stm32g070;
#[cfg(feature = "stm32g071")]
pub mod stm32g071;
#[cfg(feature = "stm32g081")]
pub mod stm32g081;
#[cfg(feature = "stm32g0b0")]
pub mod stm32g0b0;
#[cfg(feature = "stm32g0b1")]
pub mod stm32g0b1;
#[cfg(feature = "stm32g0c1")]
pub mod stm32g0c1;