- Added methods for match register and interrupts.
- Added optional dependency on
chrono
.
- Changed
get_unix_timestamp
andset_unix_timestamp
to use u32 rather than u64, to match the size of the device registers. - Made
Rtc::new
unsafe, as it must be passed a valid pointer. - Made
set_unix_timestamp
take&mut self
rather than&self
because it writes to device memory.
- Implemented
Send
andSync
forRtc
.
Initial release.