aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/rtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/src/rtc.c')
-rw-r--r--os/hal/src/rtc.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/os/hal/src/rtc.c b/os/hal/src/rtc.c
index 52e35fd22..37ab87c00 100644
--- a/os/hal/src/rtc.c
+++ b/os/hal/src/rtc.c
@@ -134,26 +134,6 @@ void rtcGetAlarm(RTCDriver *rtcp,
}
#endif /* RTC_ALARMS > 0 */
-/**
- * @brief Sets periodic wakeup period.
- */
-void rtcSetPeriodicWakeup(RTCDriver *rtcp, RTCWakeup *wakeupspec) {
- chDbgCheck((rtcp != NULL) && (wakeupspec != NULL), "rtcSetPeriodicWakeup");
- rtc_lld_set_periodic_wakeup(rtcp, wakeupspec);
-}
-/**
- * @brief Gets periodic wakeup period.
- */
-void rtcGetPeriodicWakeup(RTCDriver *rtcp, RTCWakeup *wakeupspec) {
- chDbgCheck((rtcp != NULL) && (wakeupspec != NULL), "rtcGetPeriodicWakeup");
- rtc_lld_get_periodic_wakeup(rtcp, wakeupspec);
-}
-
-
-
-
-
-
#if RTC_SUPPORTS_CALLBACKS || defined(__DOXYGEN__)
/**