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

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

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

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

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

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

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

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

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

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