Home
last modified time | relevance | path

Searched refs:nYear (Results 1 – 1 of 1) sorted by relevance

/hal_stm32-latest/stm32cube/stm32f1xx/drivers/src/
Dstm32f1xx_hal_rtc.c233 static uint8_t RTC_IsLeapYear(uint16_t nYear);
235 static uint8_t RTC_WeekDayNum(uint32_t nYear, uint8_t nMonth, uint8_t nDay);
1880 static uint8_t RTC_IsLeapYear(uint16_t nYear) in RTC_IsLeapYear() argument
1882 if ((nYear % 4U) != 0U) in RTC_IsLeapYear()
1887 if ((nYear % 100U) != 0U) in RTC_IsLeapYear()
1892 if ((nYear % 400U) == 0U) in RTC_IsLeapYear()
1917 static uint8_t RTC_WeekDayNum(uint32_t nYear, uint8_t nMonth, uint8_t nDay) in RTC_WeekDayNum() argument
1921 year = 2000U + nYear; in RTC_WeekDayNum()