diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-06-13 12:08:53 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-06-13 12:08:53 +0000 |
commit | 6711ff45ea5499e2c30dd7b4216b827f263a1f95 (patch) | |
tree | 5d2d67d49261ea8c4fdb5f151b49de2a755be249 /os/hal/include | |
parent | 7b584490f3ce37e9559d7e1ffe17bcb1a2fc2fae (diff) | |
download | ChibiOS-6711ff45ea5499e2c30dd7b4216b827f263a1f95.tar.gz ChibiOS-6711ff45ea5499e2c30dd7b4216b827f263a1f95.tar.bz2 ChibiOS-6711ff45ea5499e2c30dd7b4216b827f263a1f95.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6987 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r-- | os/hal/include/rtc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/os/hal/include/rtc.h b/os/hal/include/rtc.h index 6a792adc7..df11cbc92 100644 --- a/os/hal/include/rtc.h +++ b/os/hal/include/rtc.h @@ -63,7 +63,6 @@ #define RTC_DAY_FRIDAY 5
#define RTC_DAY_SATURDAY 6
#define RTC_DAY_SUNDAY 7
-
/** @} */
/*===========================================================================*/
@@ -173,7 +172,7 @@ extern "C" { void rtcInit(void);
void rtcSetTime(RTCDriver *rtcp, const RTCDateTime *timespec);
void rtcGetTime(RTCDriver *rtcp, RTCDateTime *timespec);
-#if RTC_ALARMS > 0
+#if STM32_RTC_NUM_ALARMS > 0
void rtcSetAlarm(RTCDriver *rtcp,
rtcalarm_t alarm,
const RTCAlarm *alarmspec);
|