diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-08-23 08:11:49 -0600 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-08-23 08:11:49 -0600 |
commit | 67b749f3afe08bc8a14fa89e92019d142dafa74e (patch) | |
tree | dc46ba08c45a7aab96177a385dadc5a616a4e502 /watch-library/watch/watch_rtc.h | |
parent | 42f0eac6d12bb354ce34f1cee42ad43f8a023282 (diff) | |
download | Sensor-Watch-67b749f3afe08bc8a14fa89e92019d142dafa74e.tar.gz Sensor-Watch-67b749f3afe08bc8a14fa89e92019d142dafa74e.tar.bz2 Sensor-Watch-67b749f3afe08bc8a14fa89e92019d142dafa74e.zip |
refactor: break out different areas of functionality
Diffstat (limited to 'watch-library/watch/watch_rtc.h')
-rw-r--r-- | watch-library/watch/watch_rtc.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/watch-library/watch/watch_rtc.h b/watch-library/watch/watch_rtc.h new file mode 100644 index 00000000..c685ac26 --- /dev/null +++ b/watch-library/watch/watch_rtc.h @@ -0,0 +1,58 @@ +/* + * MIT License + * + * Copyright (c) 2020 Joey Castillo + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +////< @file watch_rtc.h + +#include "hpl_calendar.h" + +/** @addtogroup rtc Real-Time Clock + * @brief This section covers functions related to the SAM L22's real-time clock peripheral, including + * date, time and alarm functions. + * @details The real-time clock is the only peripheral that main.c enables for you. It is the cornerstone + * of low power operation on the watch, and it is required for several key functions that we + * assume will be available, namely the wake from BACKUP mode and the callback on the ALARM button. + * It is also required for the operation of the 1 Hz tick interrupt, which you will most likely use + * to wake from STANDBY mode. + */ +/// @{ +/** @brief Called by main.c to check if the RTC is enabled. + * You may call this function, but outside of app_init, it sbould always return true. + */ +bool _watch_rtc_is_enabled(); + +/** @brief Sets the system date and time. + * @param date_time A struct representing the date and time you wish to set. + */ +void watch_set_date_time(struct calendar_date_time date_time); + +/** @brief Returns the system date and time in the provided struct. + * @param date_time A pointer to a calendar_date_time struct. + It will be populated with the correct date and time on return. + */ +void watch_get_date_time(struct calendar_date_time *date_time); + +/** @brief Registers a "tick" callback that will be called once per second. + * @param callback The function you wish to have called when the clock ticks. + */ +void watch_register_tick_callback(ext_irq_cb_t callback); +/// @} |