Implement RTC #1

Merged
paoda merged 14 commits from rtc into main 2022-09-17 23:36:34 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 617f7f4690 - Show all commits

View File

@ -469,10 +469,10 @@ const Clock = struct {
};
const GpioData = extern union {
sck: Bit(u4, 0),
sio: Bit(u4, 1),
cs: Bit(u4, 2),
raw: u4,
sck: Bit(u8, 0),
sio: Bit(u8, 1),
cs: Bit(u8, 2),
raw: u8,
};
const Control = extern union {