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 alarm;
12pub mod bcd;
13pub mod control;
14pub mod datetime;
15pub mod error;
16pub mod nvram;
17pub mod rtc;
18pub mod square_wave;