stm32g4 0.16.0

Device support crates for STM32G4 devices
Documentation
//! Peripheral access API for STM32G4 microcontrollers
//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
//! 0.36.1)
//!
//! You can find an overview of the API here:
//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.36.1/svd2rust/#peripheral-api)
//!
//! For more details see the README here:
//! [stm32-rs](https://github.com/stm32-rs/stm32-rs)
//!
//! This crate supports all STM32G4 devices; for the complete list please
//! see:
//! [stm32g4](https://crates.io/crates/stm32g4)
//!
//! Due to doc build limitations, not all devices may be shown on docs.rs;
//! a representative few have been selected instead. For a complete list of
//! available registers and fields see: [stm32-rs Device Coverage](https://stm32-rs.github.io/stm32-rs/)

#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]

mod generic;
pub use self::generic::*;

#[cfg(feature = "stm32g431")]
pub mod stm32g431;

#[cfg(feature = "stm32g441")]
pub mod stm32g441;

#[cfg(feature = "stm32g471")]
pub mod stm32g471;

#[cfg(feature = "stm32g473")]
pub mod stm32g473;

#[cfg(feature = "stm32g474")]
pub mod stm32g474;

#[cfg(feature = "stm32g483")]
pub mod stm32g483;

#[cfg(feature = "stm32g484")]
pub mod stm32g484;

#[cfg(feature = "stm32g491")]
pub mod stm32g491;

#[cfg(feature = "stm32g4a1")]
pub mod stm32g4a1;