diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-15 20:49:24 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-15 20:49:24 +0000 |
commit | 9a98744b28ecfda0d78d5983e3a2d264c36bcec7 (patch) | |
tree | fe7dd0f7dad67a0d18c5693786f4c32594c8a962 /os/hal/include | |
parent | 124a432b0ed05568381f2bf6930a86a767f85ea6 (diff) | |
download | ChibiOS-9a98744b28ecfda0d78d5983e3a2d264c36bcec7.tar.gz ChibiOS-9a98744b28ecfda0d78d5983e3a2d264c36bcec7.tar.bz2 ChibiOS-9a98744b28ecfda0d78d5983e3a2d264c36bcec7.zip |
RTC. Testhal works on F4x, compiles (but not deeply tested) on F1x.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3615 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-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,
|