An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

        

# CMOS

![crates.io](https://img.shields.io/crates/v/cmos-rtc.svg)
![docs.rs](https://docs.rs/cmos-rtc/badge.svg)

"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();
```