rtc_hal/lib.rs
1//! # RTC HAL - Platform-agnostic Real-Time Clock traits
2//!
3//! This crate provides traits for implementing Real-Time Clock (RTC) drivers
4//! in a platform-agnostic way, following the embedded-hal design patterns.
5//!
6#![cfg_attr(docsrs, feature(doc_auto_cfg))]
7#![cfg_attr(not(test), no_std)]
8#![deny(unsafe_code)]
9#![warn(missing_docs)]
10
11pub mod bcd;
12pub mod datetime;
13pub mod error;
14pub mod nvram;
15pub mod rtc;
16pub mod square_wave;