stm32_rust_template/arch/cortex_m4/
mod.rs

1//! # Cortex-M4 Architecture Support
2//!
3//! Provides low-level system functionality and register access for the
4//! ARM Cortex-M4 processor core used in STM32 microcontrollers.
5//!
6//! This module includes implementations for the Nested Vectored Interrupt
7//! Controller (NVIC), System Control Block (SCB), and SysTick timer.
8pub mod nvic;
9pub mod scb;
10pub mod systick;