Hardware Real Time Clock API.
More...
Hardware Real Time Clock API.
The RTC keeps track of time in human readable format and generates events when the time is equal to a preset value. Think of a digital clock, not epoch time used by most computers. There are seven fields, one each for year (12 bit), month (4 bit), day (5 bit), day of the week (3 bit), hour (5 bit) minute (6 bit) and second (6 bit), storing the data in binary format.
- See also
- datetime_t
Example
int main() {
printf("Hello RTC!\n");
char datetime_buf[256];
char *datetime_str = &datetime_buf[0];
.month = 06,
.day = 05,
.dotw = 5,
.hour = 15,
.min = 45,
.sec = 00
};
while (true) {
printf("\r%s ", datetime_str);
}
return 0;
}
◆ rtc_callback_t
typedef void(* rtc_callback_t) (void) |
◆ rtc_get_datetime()
Get the current time from the RTC.
- Parameters
-
t | Pointer to a datetime_t structure to receive the current RTC time |
- Returns
- true if datetime is valid, false if the RTC is not running.
◆ rtc_set_alarm()
Set a time in the future for the RTC to call a user provided callback.
- Parameters
-
t | Pointer to a datetime_t structure containing a time in the future to fire the alarm. Any values set to -1 will not be matched on. |
user_callback | pointer to a rtc_callback_t to call when the alarm fires |
◆ rtc_set_datetime()
Set the RTC to the specified time.
- Note
- Note that after setting the RTC date and time, a subsequent read of the values (e.g. via rtc_get_datetime()) may not reflect the new setting until up to three cycles of the potentially-much-slower RTC clock domain have passed. This represents a period of 64 microseconds with the default RTC clock configuration.
- Parameters
-
t | Pointer to a datetime_t structure contains time to set |
- Returns
- true if set, false if the passed in datetime was invalid.