STM32L443xx HAL User Manual
|
Defines | |
#define | __LL_RTC_GET_WEEKDAY(__RTC_DATE__) (((__RTC_DATE__) >> RTC_OFFSET_WEEKDAY) & 0x000000FFU) |
Helper macro to retrieve weekday. | |
#define | __LL_RTC_GET_YEAR(__RTC_DATE__) ((__RTC_DATE__) & 0x000000FFU) |
Helper macro to retrieve Year in BCD format. | |
#define | __LL_RTC_GET_MONTH(__RTC_DATE__) (((__RTC_DATE__) >>RTC_OFFSET_MONTH) & 0x000000FFU) |
Helper macro to retrieve Month in BCD format. | |
#define | __LL_RTC_GET_DAY(__RTC_DATE__) (((__RTC_DATE__) >>RTC_OFFSET_DAY) & 0x000000FFU) |
Helper macro to retrieve Day in BCD format. |
#define __LL_RTC_GET_DAY | ( | __RTC_DATE__ | ) | (((__RTC_DATE__) >>RTC_OFFSET_DAY) & 0x000000FFU) |
Helper macro to retrieve Day in BCD format.
__RTC_DATE__ | Value returned by LL_RTC_DATE_Get |
Day | in BCD format (0x01 . . . 0x31) |
Definition at line 913 of file stm32l4xx_ll_rtc.h.
#define __LL_RTC_GET_MONTH | ( | __RTC_DATE__ | ) | (((__RTC_DATE__) >>RTC_OFFSET_MONTH) & 0x000000FFU) |
Helper macro to retrieve Month in BCD format.
__RTC_DATE__ | Value returned by LL_RTC_DATE_Get |
Returned | value can be one of the following values: |
Definition at line 906 of file stm32l4xx_ll_rtc.h.
#define __LL_RTC_GET_WEEKDAY | ( | __RTC_DATE__ | ) | (((__RTC_DATE__) >> RTC_OFFSET_WEEKDAY) & 0x000000FFU) |
Helper macro to retrieve weekday.
__RTC_DATE__ | Date returned by LL_RTC_DATE_Get function. |
Returned | value can be one of the following values: |
Definition at line 880 of file stm32l4xx_ll_rtc.h.
#define __LL_RTC_GET_YEAR | ( | __RTC_DATE__ | ) | ((__RTC_DATE__) & 0x000000FFU) |
Helper macro to retrieve Year in BCD format.
__RTC_DATE__ | Value returned by LL_RTC_DATE_Get |
Year | in BCD format (0x00 . . . 0x99) |
Definition at line 887 of file stm32l4xx_ll_rtc.h.