Lines Matching refs:alarm

17alarm| **RtcReadAlarm**: reads the RTC alarm time.<br>**RtcWriteAlarm**: writes the RTC alarm time…
94 …llback** to register a callback, which will be invoked when the specified alarm is not generated a…
106 | cb | Callback to be invoked when the alarm is not generated at the specified time.|
111 The following is an example of registering a callback for processing alarm RTC_ALARM_INDEX_A:
114 /* Register a callback for alarm RTC_ALARM_INDEX_A. */
118 /* Processing of alarm A. */
120 /* Processing of alarm B. */
127 /* Register a callback to be invoked when alarm A is not generated at the specified time. */
208 - Reading the RTC alarm time
210 Call **RtcReadAlarm()** to obtain the RTC alarm time.
222 | time | RTC alarm time information, which includes the year, month, day, day of the week, hour, mi…
232 /* Read the RTC alarm time of alarm RTC_ALARM_INDEX_A. */
239 - Setting the RTC alarm time
241 Call **RtcWriteAlarm()** to set the RTC alarm time based on the alarm index.
253 | time | RTC alarm time to set, which includes the year, month, day, day of the week, hour, minute,…
266 /* Set the RTC alarm time to 2020/01/01 00:59:59 .000. */
274 /* Set the alarm time of alarm RTC_ALARM_INDEX_A. */
281 - Enabling or disabling alarm interrupts
283 …ptEnable** to enable interrupts for an RTC alarm so that the registered callback can be invoked wh…
295 | enable | Whether to enable RTC alarm interrupts. The value **1** means to enable interrupts a…
304 /* Enable interrupts for an RTC alarm. */
484 /* Processing of alarm A. */
487 /* Processing of alarm B. */
508 /* Register a callback for alarm A if it is not generated at the specified time. */
519 /* Enable interrupts for RTC alarm A. */
537 /* Set the RTC alarm time to 2020/01/01 00:00:30 .100. */
545 …/* Set the alarm time for RTC_ALARM_INDEX_A. When the specified time is reached, "RTC Alarm A call…