stm32_rust_template/driver/
mod.rs

1//! # Peripheral Drivers
2//!
3//! Hardware abstraction layer providing safe, idiomatic Rust interfaces for
4//! STM32 microcontroller peripherals including GPIO, SPI, I2C, UART, timers,
5//! and other on-chip components.
6//!
7//! Drivers are organized by peripheral type and include MCU-specific
8//! implementations for different STM32 families.
9pub mod adc;
10pub mod can;
11pub mod dac;
12pub mod flash;
13pub mod gpio;
14pub mod i2c;
15pub mod sai;
16pub mod spi;
17pub mod timer;
18pub mod usart;
19pub mod usb;
20pub mod wwdg;