1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! Peripheral access API for STM32G0 microcontrollers
//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
//! 0.24.1)
//!
//! You can find an overview of the API here:
//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.24.1/svd2rust/#peripheral-api)
//!
//! For more details see the README here:
//! [stm32-rs](https://github.com/stm32-rs/stm32-rs)
//!
//! This crate supports all STM32G0 devices; for the complete list please
//! see:
//! [stm32g0](https://crates.io/crates/stm32g0)
//!
//! 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 = "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;