mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-06-03 12:58:08 +02:00
10 lines
166 B
Rust
10 lines
166 B
Rust
//! @file lib.rs
|
|
//! @brief Library root for the flash driver crate
|
|
//! @author Kevin Thomas
|
|
//! @date 2025
|
|
|
|
#![no_std]
|
|
|
|
// Flash driver module
|
|
pub mod flash_driver;
|