diff options
Diffstat (limited to 'os/hal/include/rtc.h')
-rw-r--r-- | os/hal/include/rtc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/include/rtc.h b/os/hal/include/rtc.h index ddb495205..354640a11 100644 --- a/os/hal/include/rtc.h +++ b/os/hal/include/rtc.h @@ -85,6 +85,8 @@ extern "C" { void rtcInit(void);
void rtcSetTime(RTCDriver *rtcp, const RTCTime *timespec);
void rtcGetTime(RTCDriver *rtcp, RTCTime *timespec);
+ void rtcSetWakeup(RTCDriver *rtcp, RTCWakeup *wakeupspec);
+ void rtcGetWakeup(RTCDriver *rtcp, RTCWakeup *wakeupspec);
#if RTC_ALARMS > 0
void rtcSetAlarm(RTCDriver *rtcp,
|