mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-06-12 17:17:52 +02:00
db25706ae7
- Add board.rs to all 8 drivers: constants, type aliases, init functions, and HAL-specific helpers with full docstrings and pub(crate) visibility - Slim main.rs to boilerplate + main() only, zero helper functions - Fix i2c.rs: add file header, full docstrings on all functions - Fix lcd1602.rs: add file header, full docstrings on all functions - Fix lib.rs headers for 0x07 and 0x08 - All 8 drivers build and all 75 tests pass
9 lines
132 B
Rust
9 lines
132 B
Rust
//! @file lib.rs
|
|
//! @brief Library root for the I2C driver crate
|
|
//! @author Kevin Thomas
|
|
//! @date 2025
|
|
|
|
#![no_std]
|
|
|
|
pub mod i2c;
|