mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-04-21 02:26:51 +02:00
10 lines
159 B
Rust
10 lines
159 B
Rust
//! @file lib.rs
|
|
//! @brief Library root for the timer driver crate
|
|
//! @author Kevin Thomas
|
|
//! @date 2025
|
|
|
|
#![no_std]
|
|
|
|
// Timer driver module
|
|
pub mod timer;
|