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