stm32: rtc: Fixed typo in macro def (RTC_DR_MT_MASK)
This commit is contained in:
parent
708fe1516c
commit
9cadd60b3c
@ -152,9 +152,9 @@ specific memorymap.h header before including this header file.*/
|
||||
/** Weekday units mask */
|
||||
#define RTC_DR_WDU_MASK (0x7)
|
||||
/** Month tens in BCD format shift */
|
||||
#define RTC_DR_MT (1<<12)
|
||||
/** Month tens in BCD format mask */
|
||||
#define RTC_DR_MT_SHIFT (12)
|
||||
/** Month tens in BCD format mask */
|
||||
#define RTC_DR_MT_MASK (1<<12)
|
||||
/** Month units in BCD format shift */
|
||||
#define RTC_DR_MU_SHIFT (8)
|
||||
/** Month units in BCD format mask */
|
||||
|
Loading…
x
Reference in New Issue
Block a user