https://github.com/deadblackclover/cmos
"CMOS" is a tiny bit of very low power static memory that lives on the same chip as the Real-Time Clock (RTC)
https://github.com/deadblackclover/cmos
cmos no-std operating-system rtc
Last synced: about 1 month ago
JSON representation
"CMOS" is a tiny bit of very low power static memory that lives on the same chip as the Real-Time Clock (RTC)
- Host: GitHub
- URL: https://github.com/deadblackclover/cmos
- Owner: deadblackclover
- License: gpl-3.0
- Created: 2021-05-21T13:47:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-31T08:32:53.000Z (about 2 years ago)
- Last Synced: 2025-04-12T02:10:02.388Z (about 1 month ago)
- Topics: cmos, no-std, operating-system, rtc
- Language: Rust
- Homepage: https://docs.rs/cmos-rtc/
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CMOS

"CMOS" is a tiny bit of very low power static memory that lives on the same chip as the Real-Time Clock (RTC)
## Usage
```rust
use cmos_rtc::{ReadRTC, Time};let mut cmos = ReadRTC::new(0x00, 0x00);
let time: Time = cmos.read();
```