1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Parent module for all STM32WL devices.

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

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

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

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

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