summaryrefslogtreecommitdiff
path: root/firmware/export/rtc.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/rtc.h')
-rw-r--r--firmware/export/rtc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/rtc.h b/firmware/export/rtc.h
index 2f13cbb578..1b0d215371 100644
--- a/firmware/export/rtc.h
+++ b/firmware/export/rtc.h
@@ -47,13 +47,13 @@ int rtc_write(unsigned char address, unsigned char value);
47 47
48#endif /* RTC_M41ST84W */ 48#endif /* RTC_M41ST84W */
49 49
50#ifdef HAVE_ALARM_MOD 50#ifdef HAVE_RTC_ALARM
51void rtc_set_alarm(int h, int m); 51void rtc_set_alarm(int h, int m);
52void rtc_get_alarm(int *h, int *m); 52void rtc_get_alarm(int *h, int *m);
53bool rtc_enable_alarm(bool enable); 53bool rtc_enable_alarm(bool enable);
54bool rtc_check_alarm_started(bool release_alarm); 54bool rtc_check_alarm_started(bool release_alarm);
55bool rtc_check_alarm_flag(void); 55bool rtc_check_alarm_flag(void);
56#endif /* HAVE_ALARM_MOD */ 56#endif /* HAVE_RTC_ALARM */
57 57
58#endif /* CONFIG_RTC */ 58#endif /* CONFIG_RTC */
59 59