stm32_rust_template/bsp/mod.rs
1//! # Board Support Package (BSP)
2//!
3//! Provides hardware-specific implementations for external peripherals and
4//! board-level components commonly used with STM32 microcontrollers.
5//!
6//! This module includes drivers for EEPROM, real-time clocks, and flash
7//! memory devices that interface with the MCU through standard protocols.
8pub mod at24;
9pub mod ds1307;
10pub mod spi_flash;