maxim_ds3231.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. /*
  2. * Copyright (c) 2019 Peter Bigot Consulting, LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Real-time clock control based on the DS3231 counter API.
  9. *
  10. * The [Maxim
  11. * DS3231](https://www.maximintegrated.com/en/products/analog/real-time-clocks/DS3231.html)
  12. * is a high-precision real-time clock with temperature-compensated
  13. * crystal oscillator and support for configurable alarms.
  14. *
  15. * The core Zephyr API to this device is as a counter, with the
  16. * following limitations:
  17. * * counter_read() and counter_*_alarm() cannot be invoked from
  18. * interrupt context, as they require communication with the device
  19. * over an I2C bus.
  20. * * many other counter APIs, such as start/stop/set_top_value are not
  21. * supported as the clock is always running.
  22. * * two alarm channels are supported but are not equally capable:
  23. * channel 0 supports alarms at 1 s resolution, while channel 1
  24. * supports alarms at 1 minute resolution.
  25. *
  26. * Most applications for this device will need to use the extended
  27. * functionality exposed by this header to access the real-time-clock
  28. * features. The majority of these functions must be invoked from
  29. * supervisor mode.
  30. */
  31. #ifndef ZEPHYR_INCLUDE_DRIVERS_RTC_DS3231_H_
  32. #define ZEPHYR_INCLUDE_DRIVERS_RTC_DS3231_H_
  33. #include <time.h>
  34. #include <drivers/counter.h>
  35. #include <kernel.h>
  36. #include <zephyr/types.h>
  37. #include <sys/notify.h>
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. /** @brief Bit in ctrl or ctrl_stat associated with alarm 1. */
  42. #define MAXIM_DS3231_ALARM1 BIT(0)
  43. /** @brief Bit in ctrl or ctrl_stat associated with alarm 2. */
  44. #define MAXIM_DS3231_ALARM2 BIT(1)
  45. /* Constants corresponding to bits in the DS3231 control register at
  46. * 0x0E.
  47. *
  48. * See the datasheet for interpretation of these bits.
  49. */
  50. /** @brief ctrl bit for alarm 1 interrupt enable. */
  51. #define MAXIM_DS3231_REG_CTRL_A1IE MAXIM_DS3231_ALARM1
  52. /** @brief ctrl bit for alarm 2 interrupt enable. */
  53. #define MAXIM_DS3231_REG_CTRL_A2IE MAXIM_DS3231_ALARM2
  54. /** @brief ctrl bit for ISQ functionality.
  55. *
  56. * When clear the ISW signal provides a square wave. When set the ISW
  57. * signal indicates alarm events.
  58. *
  59. * @note The driver expects to be able to control this bit.
  60. */
  61. #define MAXIM_DS3231_REG_CTRL_INTCN BIT(2)
  62. /** @brief ctrl bit offset for square wave output frequency.
  63. *
  64. * @note The driver will control the content of this field.
  65. */
  66. #define MAXIM_DS3231_REG_CTRL_RS_Pos 3
  67. /** @brief ctrl mask to isolate RS bits. */
  68. #define MAXIM_DS3231_REG_CTRL_RS_Msk (0x03 << MAXIM_DS3231_REG_CTRL_RS_Pos)
  69. /** @brief ctrl RS field value for 1 Hz square wave. */
  70. #define MAXIM_DS3231_REG_CTRL_RS_1Hz 0x00
  71. /** @brief ctrl RS field value for 1024 Hz square wave. */
  72. #define MAXIM_DS3231_REG_CTRL_RS_1KiHz 0x01
  73. /** @brief ctrl RS field value for 4096 Hz square wave. */
  74. #define MAXIM_DS3231_REG_CTRL_RS_4KiHz 0x02
  75. /** @brief ctrl RS field value for 8192 Hz square wave. */
  76. #define MAXIM_DS3231_REG_CTRL_RS_8KiHz 0x03
  77. /** @brief ctrl bit to write to trigger temperature conversion. */
  78. #define MAXIM_DS3231_REG_CTRL_CONV BIT(5)
  79. /** @brief ctrl bit to write to enable square wave output in battery mode. */
  80. #define MAXIM_DS3231_REG_CTRL_BBSQW BIT(6)
  81. /** @brief ctrl bit to write to disable the oscillator. */
  82. #define MAXIM_DS3231_REG_CTRL_EOSCn BIT(7),
  83. /** @brief ctrl_stat bit indicating alarm1 has triggered.
  84. *
  85. * If an alarm callback handler is registered this bit is
  86. * cleared prior to invoking the callback with the flags
  87. * indicating which alarms are ready.
  88. */
  89. #define MAXIM_DS3231_REG_STAT_A1F MAXIM_DS3231_ALARM1
  90. /** @brief ctrl_stat bit indicating alarm2 has triggered.
  91. *
  92. * If an alarm callback handler is registered this bit is
  93. * cleared prior to invoking the callback with the flags
  94. * indicating which alarms are ready.
  95. */
  96. #define MAXIM_DS3231_REG_STAT_A2F MAXIM_DS3231_ALARM2
  97. /** @brief Flag indicating a temperature conversion is in progress. */
  98. #define MAXIM_DS3231_REG_STAT_BSY BIT(2)
  99. /** @brief Set to enable 32 KiHz open drain signal.
  100. *
  101. * @note This is a control bit, though it is positioned within the
  102. * ctrl_stat register which otherwise contains status bits.
  103. */
  104. #define MAXIM_DS3231_REG_STAT_EN32kHz BIT(3)
  105. /** @brief Flag indicating the oscillator has been off since last cleared. */
  106. #define MAXIM_DS3231_REG_STAT_OSF BIT(7)
  107. /** @brief Control alarm behavior on match in seconds field.
  108. *
  109. * If clear the alarm fires only when the RTC seconds matches the
  110. * alarm seconds.
  111. *
  112. * If set the alarm seconds field is ignored and an alarm will be
  113. * triggered every second. The bits for IGNMN, IGNHR, and IGNDA must
  114. * all be set.
  115. *
  116. * This bit must be clear for the second alarm instance.
  117. *
  118. * Bit maps to A1M1 and is used in
  119. * maxim_ds3231_alarm_configuration::alarm_flags.
  120. */
  121. #define MAXIM_DS3231_ALARM_FLAGS_IGNSE BIT(0)
  122. /** @brief Control alarm behavior on match in minutes field.
  123. *
  124. * If clear the alarm fires only when the RTC minutes matches the
  125. * alarm minutes. The bit for IGNSE must be clear.
  126. *
  127. * If set the alarm minutes field is ignored and alarms will be
  128. * triggered based on IGNSE. The bits for IGNHR and IGNDA must both be
  129. * set.
  130. *
  131. * Bit maps to A1M2 or A2M2 and is used in
  132. * maxim_ds3231_alarm_configuration::alarm_flags.
  133. */
  134. #define MAXIM_DS3231_ALARM_FLAGS_IGNMN BIT(1)
  135. /** @brief Control alarm behavior on match in hours field.
  136. *
  137. * If clear the alarm fires only when the RTC hours matches the
  138. * alarm hours. The bits for IGNMN and IGNSE must be clear.
  139. *
  140. * If set the alarm hours field is ignored and alarms will be
  141. * triggered based on IGNMN and IGNSE. The bit for IGNDA must be set.
  142. *
  143. * Bit maps to A1M3 or A2M3 and is used in
  144. * maxim_ds3231_alarm_configuration::alarm_flags.
  145. */
  146. #define MAXIM_DS3231_ALARM_FLAGS_IGNHR BIT(2)
  147. /** @brief Control alarm behavior on match in day/date field.
  148. *
  149. * If clear the alarm fires only when the RTC day/date matches the
  150. * alarm day/date, mediated by MAXIM_DS3231_ALARM_FLAGS_DAY. The bits
  151. * for IGNHR, IGNMN, and IGNSE must be clear
  152. *
  153. * If set the alarm day/date field is ignored and an alarm will be
  154. * triggered based on IGNHR, IGNMN, and IGNSE.
  155. *
  156. * Bit maps to A1M4 or A2M4 and is used in
  157. * maxim_ds3231_alarm_configuration::alarm_flags.
  158. */
  159. #define MAXIM_DS3231_ALARM_FLAGS_IGNDA BIT(3)
  160. /** @brief Control match on day of week versus day of month
  161. *
  162. * Set the flag to match on day of week; clear it to match on day of
  163. * month.
  164. *
  165. * Bit maps to DY/DTn in corresponding
  166. * maxim_ds3231_alarm_configuration::alarm_flags.
  167. */
  168. #define MAXIM_DS3231_ALARM_FLAGS_DOW BIT(4)
  169. /** @brief Indicates that the alarm should be disabled once it fires.
  170. *
  171. * Set the flag in the maxim_ds3231_alarm_configuration::alarm_flags
  172. * field to cause the alarm to be disabled when the interrupt fires,
  173. * prior to invoking the corresponding handler.
  174. *
  175. * Leave false to allow the alarm to remain enabled so it will fire
  176. * again on the next match.
  177. */
  178. #define MAXIM_DS3231_ALARM_FLAGS_AUTODISABLE BIT(7)
  179. /**
  180. * @brief RTC DS3231 Driver-Specific API
  181. * @defgroup rtc_interface Real Time Clock interfaces
  182. * @ingroup io_interfaces
  183. * @{
  184. */
  185. /** @brief Signature for DS3231 alarm callbacks.
  186. *
  187. * The alarm callback is invoked from the system work queue thread.
  188. * At the point the callback is invoked the corresponding alarm flags
  189. * will have been cleared from the device status register. The
  190. * callback is permitted to invoke operations on the device.
  191. *
  192. * @param dev the device from which the callback originated
  193. * @param id the alarm id
  194. * @param syncclock the value from maxim_ds3231_read_syncclock() at the
  195. * time the alarm interrupt was processed.
  196. * @param user_data the corresponding parameter from
  197. * maxim_ds3231_alarm::user_data.
  198. */
  199. typedef void (*maxim_ds3231_alarm_callback_handler_t)(const struct device *dev,
  200. uint8_t id,
  201. uint32_t syncclock,
  202. void *user_data);
  203. /** @brief Signature used to notify a user of the DS3231 that an
  204. * asynchronous operation has completed.
  205. *
  206. * Functions compatible with this type are subject to all the
  207. * constraints of #sys_notify_generic_callback.
  208. *
  209. * @param dev the DS3231 device pointer
  210. *
  211. * @param notify the notification structure provided in the call
  212. *
  213. * @param res the result of the operation.
  214. */
  215. typedef void (*maxim_ds3231_notify_callback)(const struct device *dev,
  216. struct sys_notify *notify,
  217. int res);
  218. /** @brief Information defining the alarm configuration.
  219. *
  220. * DS3231 alarms can be set to fire at specific times or at the
  221. * rollover of minute, hour, day, or day of week.
  222. *
  223. * When an alarm is configured with a handler an interrupt will be
  224. * generated and the handler called from the system work queue.
  225. *
  226. * When an alarm is configured without a handler, or a persisted alarm
  227. * is present, alarms can be read using maxim_ds3231_check_alarms().
  228. */
  229. struct maxim_ds3231_alarm {
  230. /** @brief Time specification for an RTC alarm.
  231. *
  232. * Though specified as a UNIX time, the alarm parameters are
  233. * determined by converting to civil time and interpreting the
  234. * component hours, minutes, seconds, day-of-week, and
  235. * day-of-month fields, mediated by the corresponding #flags.
  236. *
  237. * The year and month are ignored, but be aware that gmtime()
  238. * determines day-of-week based on calendar date. Decoded
  239. * alarm times will fall within 1978-01 since 1978-01-01
  240. * (first of month) was a Sunday (first of week).
  241. */
  242. time_t time;
  243. /** @brief Handler to be invoked when alarms are signalled.
  244. *
  245. * If this is null the alarm will not be triggered by the
  246. * INTn/SQW GPIO. This is a "persisted" alarm from its role
  247. * in using the DS3231 to trigger a wake from deep sleep. The
  248. * application should use maxim_ds3231_check_alarms() to
  249. * determine whether such an alarm has been triggered.
  250. *
  251. * If this is not null the driver will monitor the ISW GPIO
  252. * for alarm signals and will invoke the handler with a
  253. * parameter carrying the value returned by
  254. * maxim_ds3231_check_alarms(). The corresponding status flags
  255. * will be cleared in the device before the handler is
  256. * invoked.
  257. *
  258. * The handler will be invoked from the system work queue.
  259. */
  260. maxim_ds3231_alarm_callback_handler_t handler;
  261. /** @brief User-provided pointer passed to alarm callback. */
  262. void *user_data;
  263. /** @brief Flags controlling configuration of the alarm alarm.
  264. *
  265. * See MAXIM_DS3231_ALARM_FLAGS_IGNSE and related constants.
  266. *
  267. * Note that as described the alarm mask fields require that
  268. * if a unit is not ignored, higher-precision units must also
  269. * not be ignored. For example, if match on hours is enabled,
  270. * match on minutes and seconds must also be enabled. Failure
  271. * to comply with this requirement will cause
  272. * maxim_ds3231_set_alarm() to return an error, leaving the
  273. * alarm configuration unchanged.
  274. */
  275. uint8_t flags;
  276. };
  277. /** @brief Register the RTC clock against system clocks.
  278. *
  279. * This captures the same instant in both the RTC time scale and a
  280. * stable system clock scale, allowing conversion between those
  281. * scales.
  282. */
  283. struct maxim_ds3231_syncpoint {
  284. /** @brief Time from the DS3231.
  285. *
  286. * This maybe in UTC, TAI, or local offset depending on how
  287. * the RTC is maintained.
  288. */
  289. struct timespec rtc;
  290. /** @brief Value of a local clock at the same instant as #rtc.
  291. *
  292. * This is captured from a stable monotonic system clock
  293. * running at between 1 kHz and 1 MHz, allowing for
  294. * microsecond to millisecond accuracy in synchronization.
  295. */
  296. uint32_t syncclock;
  297. };
  298. /** @brief Read the local synchronization clock.
  299. *
  300. * Synchronization aligns the DS3231 real-time clock with a stable
  301. * monotonic local clock which should have a frequency between 1 kHz
  302. * and 1 MHz and be itself synchronized with the primary system time
  303. * clock. The accuracy of the alignment and the maximum time between
  304. * synchronization updates is affected by the resolution of this
  305. * clock.
  306. *
  307. * On some systems the hardware clock from k_cycles_get_32() is
  308. * suitable, but on others that clock advances too quickly. The
  309. * frequency of the target-specific clock is provided by
  310. * maxim_ds3231_syncclock_frequency().
  311. *
  312. * At this time the value is captured from `k_uptime_get_32()`; future
  313. * kernel extensions may make a higher-resolution clock available.
  314. *
  315. * @note This function is *isr-ok*.
  316. *
  317. * @param dev the DS3231 device pointer
  318. *
  319. * @return the current value of the synchronization clock.
  320. */
  321. static inline uint32_t maxim_ds3231_read_syncclock(const struct device *dev)
  322. {
  323. return k_uptime_get_32();
  324. }
  325. /** @brief Get the frequency of the synchronization clock.
  326. *
  327. * Provides the frequency of the clock used in maxim_ds3231_read_syncclock().
  328. *
  329. * @param dev the DS3231 device pointer
  330. *
  331. * @return the frequency of the selected synchronization clock.
  332. */
  333. static inline uint32_t maxim_ds3231_syncclock_frequency(const struct device *dev)
  334. {
  335. return 1000U;
  336. }
  337. /**
  338. * @brief Set and clear specific bits in the control register.
  339. *
  340. * @note This function assumes the device register cache is valid. It
  341. * will not read the register value, and it will write to the device
  342. * only if the value changes as a result of applying the set and clear
  343. * changes.
  344. *
  345. * @note Unlike maxim_ds3231_stat_update() the return value from this
  346. * function indicates the register value after changes were made.
  347. * That return value is cached for use in subsequent operations.
  348. *
  349. * @note This function is *supervisor*.
  350. *
  351. * @return the non-negative updated value of the register, or a
  352. * negative error code from an I2C transaction.
  353. */
  354. int maxim_ds3231_ctrl_update(const struct device *dev,
  355. uint8_t set_bits,
  356. uint8_t clear_bits);
  357. /**
  358. * @brief Read the ctrl_stat register then set and clear bits in it.
  359. *
  360. * The content of the ctrl_stat register will be read, then the set
  361. * and clear bits applied and the result written back to the device
  362. * (regardless of whether there appears to be a change in value).
  363. *
  364. * OSF, A1F, and A2F will be written with 1s if the corresponding bits
  365. * do not appear in either @p set_bits or @p clear_bits. This ensures
  366. * that if any flag becomes set between the read and the write that
  367. * indicator will not be cleared.
  368. *
  369. * @note Unlike maxim_ds3231_ctrl_update() the return value from this
  370. * function indicates the register value before any changes were made.
  371. *
  372. * @note This function is *supervisor*.
  373. *
  374. * @param dev the DS3231 device pointer
  375. *
  376. * @param set_bits bits to be set when writing back. Setting bits
  377. * other than @ref MAXIM_DS3231_REG_STAT_EN32kHz will have no effect.
  378. *
  379. * @param clear_bits bits to be cleared when writing back. Include
  380. * the bits for the status flags you want to clear.
  381. *
  382. * @return the non-negative register value as originally read
  383. * (disregarding the effect of clears and sets), or a negative error
  384. * code from an I2C transaction.
  385. */
  386. int maxim_ds3231_stat_update(const struct device *dev,
  387. uint8_t set_bits,
  388. uint8_t clear_bits);
  389. /** @brief Read a DS3231 alarm configuration.
  390. *
  391. * The alarm configuration data is read from the device and
  392. * reconstructed into the output parameter.
  393. *
  394. * @note This function is *supervisor*.
  395. *
  396. * @param dev the DS3231 device pointer.
  397. *
  398. * @param id the alarm index, which must be 0 (for the 1 s resolution
  399. * alarm) or 1 (for the 1 min resolution alarm).
  400. *
  401. * @param cfg a pointer to a structure into which the configured alarm
  402. * data will be stored.
  403. *
  404. * @return a non-negative value indicating successful conversion, or a
  405. * negative error code from an I2C transaction or invalid parameter.
  406. */
  407. int maxim_ds3231_get_alarm(const struct device *dev,
  408. uint8_t id,
  409. struct maxim_ds3231_alarm *cfg);
  410. /** @brief Configure a DS3231 alarm.
  411. *
  412. * The alarm configuration is validated and stored into the device.
  413. *
  414. * To cancel an alarm use counter_cancel_channel_alarm().
  415. *
  416. * @note This function is *supervisor*.
  417. *
  418. * @param dev the DS3231 device pointer.
  419. *
  420. * @param id 0 Analog to counter index. @c ALARM1 is 0 and has 1 s
  421. * resolution, @c ALARM2 is 1 and has 1 minute resolution.
  422. *
  423. * @param cfg a pointer to the desired alarm configuration. Both
  424. * alarms are configured; if only one is to change the application
  425. * must supply the existing configuration for the other.
  426. *
  427. * @return a non-negative value on success, or a negative error code
  428. * from an I2C transaction or an invalid parameter.
  429. */
  430. int maxim_ds3231_set_alarm(const struct device *dev,
  431. uint8_t id,
  432. const struct maxim_ds3231_alarm *cfg);
  433. /** @brief Synchronize the RTC against the local clock.
  434. *
  435. * The RTC advances one tick per second with no access to sub-second
  436. * precision. Synchronizing clocks at sub-second resolution requires
  437. * enabling a 1pps signal then capturing the system clocks in a GPIO
  438. * callback. This function provides that operation.
  439. *
  440. * Synchronization is performed in asynchronously, and may take as
  441. * long as 1 s to complete; notification of completion is provided
  442. * through the @p notify parameter.
  443. *
  444. * Applications should use maxim_ds3231_get_syncpoint() to retrieve the
  445. * synchronization data collected by this operation.
  446. *
  447. * @note This function is *supervisor*.
  448. *
  449. * @param dev the DS3231 device pointer.
  450. *
  451. * @param notify pointer to the object used to specify asynchronous
  452. * function behavior and store completion information.
  453. *
  454. * @retval non-negative on success
  455. * @retval -EBUSY if a synchronization or set is currently in progress
  456. * @retval -EINVAL if notify is not provided
  457. * @retval -ENOTSUP if the required interrupt is not configured
  458. */
  459. int maxim_ds3231_synchronize(const struct device *dev,
  460. struct sys_notify *notify);
  461. /** @brief Request to update the synchronization point.
  462. *
  463. * This is a variant of maxim_ds3231_synchronize() for use from user
  464. * threads.
  465. *
  466. * @param dev the DS3231 device pointer.
  467. *
  468. * @param signal pointer to a valid and ready-to-be-signalled
  469. * k_poll_signal. May be NULL to request a synchronization point be
  470. * collected without notifying when it has been updated.
  471. *
  472. * @retval non-negative on success
  473. * @retval -EBUSY if a synchronization or set is currently in progress
  474. * @retval -ENOTSUP if the required interrupt is not configured
  475. */
  476. __syscall int maxim_ds3231_req_syncpoint(const struct device *dev,
  477. struct k_poll_signal *signal);
  478. /** @brief Retrieve the most recent synchronization point.
  479. *
  480. * This function returns the synchronization data last captured using
  481. * maxim_ds3231_synchronize().
  482. *
  483. * @param dev the DS3231 device pointer.
  484. *
  485. * @param syncpoint where to store the synchronization data.
  486. *
  487. * @retval non-negative on success
  488. * @retval -ENOENT if no syncpoint has been captured
  489. */
  490. __syscall int maxim_ds3231_get_syncpoint(const struct device *dev,
  491. struct maxim_ds3231_syncpoint *syncpoint);
  492. /** @brief Set the RTC to a time consistent with the provided
  493. * synchronization.
  494. *
  495. * The RTC advances one tick per second with no access to sub-second
  496. * precision, and setting the clock resets the internal countdown
  497. * chain. This function implements the magic necessary to set the
  498. * clock while retaining as much sub-second accuracy as possible. It
  499. * requires a synchronization point that pairs sub-second resolution
  500. * civil time with a local synchronization clock captured at the same
  501. * instant. The set operation may take as long as 1 second to
  502. * complete; notification of completion is provided through the @p
  503. * notify parameter.
  504. *
  505. * @note This function is *supervisor*.
  506. *
  507. * @param dev the DS3231 device pointer.
  508. *
  509. * @param syncpoint the structure providing the synchronization point.
  510. *
  511. * @param notify pointer to the object used to specify asynchronous
  512. * function behavior and store completion information.
  513. *
  514. * @retval non-negative on success
  515. * @retval -EINVAL if syncpoint or notify are null
  516. * @retval -ENOTSUP if the required interrupt signal is not configured
  517. * @retval -EBUSY if a synchronization or set is currently in progress
  518. */
  519. int maxim_ds3231_set(const struct device *dev,
  520. const struct maxim_ds3231_syncpoint *syncpoint,
  521. struct sys_notify *notify);
  522. /** @brief Check for and clear flags indicating that an alarm has
  523. * fired.
  524. *
  525. * Returns a mask indicating alarms that are marked as having fired,
  526. * and clears from stat the flags that it found set. Alarms that have
  527. * been configured with a callback are not represented in the return
  528. * value.
  529. *
  530. * This API may be used when a persistent alarm has been programmed.
  531. *
  532. * @note This function is *supervisor*.
  533. *
  534. * @param dev the DS3231 device pointer.
  535. *
  536. * @return a non-negative value that may have MAXIM_DS3231_ALARM1 and/or
  537. * MAXIM_DS3231_ALARM2 set, or a negative error code.
  538. */
  539. int maxim_ds3231_check_alarms(const struct device *dev);
  540. /**
  541. * @}
  542. */
  543. #ifdef __cplusplus
  544. }
  545. #endif
  546. /* @todo this should be syscalls/drivers/rtc/maxim_ds3231.h */
  547. #include <syscalls/maxim_ds3231.h>
  548. #endif /* ZEPHYR_INCLUDE_DRIVERS_RTC_DS3231_H_ */