mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-04-01 17:10:20 +02:00
- Remove duplicate //! @file/@brief/@author/@date blocks from all 8 board.rs - Update original @brief to consistent 'Board-level HAL helpers for the XXX driver' - Add // comment above pub mod in all 7 lib.rs files - All 8 drivers build, all 75 tests pass
10 lines
167 B
Rust
10 lines
167 B
Rust
//! @file lib.rs
|
|
//! @brief Library root for the LCD 1602 driver crate
|
|
//! @author Kevin Thomas
|
|
//! @date 2025
|
|
|
|
#![no_std]
|
|
|
|
// LCD 1602 driver module
|
|
pub mod lcd1602;
|