git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8da6e22ae105d92ab1bd85b22de21b0292be0371
[lunaix-os.git]
/
lunaix-os
/
hal
/
rtc
/
hwrtc.c
1
#include <hal/hwrtc.h>
2
3
const struct hwrtc* current_rtc;
4
5
void
6
hwrtc_init()
7
{
8
current_rtc = hwrtc_choose();
9
10
current_rtc->init(current_rtc);
11
}
12
13
void
14
hwrtc_walltime(datetime_t* dt)
15
{
16
current_rtc->get_walltime(current_rtc, dt);
17
}