Searched refs:bcd_to_bin (Results 1 – 1 of 1) sorted by relevance
32 static rt_uint8_t bcd_to_bin(rt_uint8_t val) in bcd_to_bin() function55 tm_new.tm_year = bcd_to_bin(rtc_current_time.rtc_year) + 100; /* tm_year: years since 1900 */ in get_rtc_timestamp()56 …tm_new.tm_mon = bcd_to_bin(rtc_current_time.rtc_month) - 1; /* tm_mon: month (0 = January, 11 = … in get_rtc_timestamp()57 tm_new.tm_mday = bcd_to_bin(rtc_current_time.rtc_date); in get_rtc_timestamp()58 tm_new.tm_hour = bcd_to_bin(rtc_current_time.rtc_hour); in get_rtc_timestamp()59 tm_new.tm_min = bcd_to_bin(rtc_current_time.rtc_minute); in get_rtc_timestamp()60 tm_new.tm_sec = bcd_to_bin(rtc_current_time.rtc_second); in get_rtc_timestamp()
Completed in 2 milliseconds