v1.5.0
Go to the documentation of this file.
7 #ifndef _HARDWARE_RTC_H
8 #define _HARDWARE_RTC_H
11 #include "hardware/structs/rtc.h"
Structure containing date and time information.
Definition: types.h:93
void rtc_set_alarm(datetime_t *t, rtc_callback_t user_callback)
Set a time in the future for the RTC to call a user provided callback.
Definition: rtc.c:147
bool rtc_running(void)
Is the RTC running?
Definition: rtc.c:18
void rtc_enable_alarm(void)
Enable the RTC alarm (if inactive)
Definition: rtc.c:109
bool rtc_get_datetime(datetime_t *t)
Get the current time from the RTC.
Definition: rtc.c:88
bool rtc_set_datetime(datetime_t *t)
Set the RTC to the specified time.
Definition: rtc.c:55
void rtc_init(void)
Initialise the RTC system.
Definition: rtc.c:22
void(* rtc_callback_t)(void)
Definition: rtc.h:40
void rtc_disable_alarm(void)
Disable the RTC alarm (if active)
Definition: rtc.c:185