@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
rtc.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef _HARDWARE_RTC_H
8#define _HARDWARE_RTC_H
9
10#include "pico.h"
11#if HAS_RP2040_RTC
12#include "hardware/structs/rtc.h"
13#endif
14
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
42typedef void (*rtc_callback_t)(void);
43
47void rtc_init(void);
48
59bool rtc_set_datetime(const datetime_t *t);
60
68
73bool rtc_running(void);
74
81void rtc_set_alarm(const datetime_t *t, rtc_callback_t user_callback);
82
86void rtc_enable_alarm(void);
87
91void rtc_disable_alarm(void);
92
93#ifdef __cplusplus
94}
95#endif
96
97#endif
void(* rtc_callback_t)(void)
Definition rtc.h:42
bool rtc_set_datetime(const datetime_t *t)
Set the RTC to the specified time.
Definition rtc.c:54
void rtc_disable_alarm(void)
Disable the RTC alarm (if active).
Definition rtc.c:184
bool rtc_get_datetime(datetime_t *t)
Get the current time from the RTC.
Definition rtc.c:87
void rtc_set_alarm(const 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:146
void rtc_enable_alarm(void)
Enable the RTC alarm (if inactive).
Definition rtc.c:108
bool rtc_running(void)
Is the RTC running?
Definition rtc.c:18
void rtc_init(void)
Initialise the RTC system.
Definition rtc.c:22
Structure containing date and time information.
Definition types.h:107