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
//! Parent module for all STM32G0 devices.

/// Peripherals shared by multiple devices
pub mod peripherals;

/// Peripheral instances shared by multiple devices
pub(crate) mod instances;

#[cfg(any(feature="stm32g030", feature="doc"))]
pub mod stm32g030;

#[cfg(any(feature="stm32g031", feature="doc"))]
pub mod stm32g031;

#[cfg(any(feature="stm32g041", feature="doc"))]
pub mod stm32g041;

#[cfg(any(feature="stm32g050", feature="doc"))]
pub mod stm32g050;

#[cfg(any(feature="stm32g051", feature="doc"))]
pub mod stm32g051;

#[cfg(any(feature="stm32g061", feature="doc"))]
pub mod stm32g061;

#[cfg(any(feature="stm32g070", feature="doc"))]
pub mod stm32g070;

#[cfg(any(feature="stm32g071", feature="doc"))]
pub mod stm32g071;

#[cfg(any(feature="stm32g07x", feature="doc"))]
pub mod stm32g07x;

#[cfg(any(feature="stm32g081", feature="doc"))]
pub mod stm32g081;

#[cfg(any(feature="stm32g0b0", feature="doc"))]
pub mod stm32g0b0;

#[cfg(any(feature="stm32g0b1", feature="doc"))]
pub mod stm32g0b1;

#[cfg(any(feature="stm32g0c1", feature="doc"))]
pub mod stm32g0c1;