stm32_rust_template/mcu/mod.rs
1//! # MCU-Specific Implementations
2//!
3//! Contains register definitions, memory maps, and peripheral configurations
4//! specific to different STM32 microcontroller families.
5//!
6//! Each MCU module provides type-safe access to hardware registers and
7//! implements the low-level functionality required by the driver layer.
8#[cfg(feature = "stm32f407")]
9pub mod stm32f407;
10
11#[cfg(feature = "stm32f401")]
12pub mod stm32f401;
13
14#[cfg(feature = "stm32f411")]
15pub mod stm32f411;
16
17#[cfg(feature = "stm32f103")]
18pub mod stm32f103;
19
20#[cfg(feature = "stm32g030")]
21pub mod stm32g030;