STM32F479xx HAL User Manual
|
Defines | |
#define | __LL_RTC_GET_HOUR(__RTC_TIME__) (((__RTC_TIME__) >> RTC_OFFSET_HOUR) & 0x000000FFU) |
Helper macro to retrieve hour in BCD format. | |
#define | __LL_RTC_GET_MINUTE(__RTC_TIME__) (((__RTC_TIME__) >> RTC_OFFSET_MINUTE) & 0x000000FFU) |
Helper macro to retrieve minute in BCD format. | |
#define | __LL_RTC_GET_SECOND(__RTC_TIME__) ((__RTC_TIME__) & 0x000000FFU) |
Helper macro to retrieve second in BCD format. |
#define __LL_RTC_GET_HOUR | ( | __RTC_TIME__ | ) | (((__RTC_TIME__) >> RTC_OFFSET_HOUR) & 0x000000FFU) |
Helper macro to retrieve hour in BCD format.
__RTC_TIME__ | RTC time returned by LL_RTC_TIME_Get function |
Hours | in BCD format (0x01. . .0x12 or between Min_Data=0x00 and Max_Data=0x23) |
Definition at line 743 of file stm32f4xx_ll_rtc.h.
#define __LL_RTC_GET_MINUTE | ( | __RTC_TIME__ | ) | (((__RTC_TIME__) >> RTC_OFFSET_MINUTE) & 0x000000FFU) |
Helper macro to retrieve minute in BCD format.
__RTC_TIME__ | RTC time returned by LL_RTC_TIME_Get function |
Minutes | in BCD format (0x00. . .0x59) |
Definition at line 750 of file stm32f4xx_ll_rtc.h.
#define __LL_RTC_GET_SECOND | ( | __RTC_TIME__ | ) | ((__RTC_TIME__) & 0x000000FFU) |
Helper macro to retrieve second in BCD format.
__RTC_TIME__ | RTC time returned by LL_RTC_TIME_Get function |
Seconds | in format (0x00. . .0x59) |
Definition at line 757 of file stm32f4xx_ll_rtc.h.