Searched refs:BCDtoDEC (Results 1 – 2 of 2) sorted by relevance
62 time.second = BCDtoDEC(buffer[0]); in getDate()63 time.minute = BCDtoDEC(buffer[1]); in getDate()64 time.hour = BCDtoDEC(buffer[2]); in getDate()65 time.day = BCDtoDEC(buffer[4]); in getDate()66 time.month = BCDtoDEC(buffer[5] & 0x1F); in getDate()67 time.year = (century == 1) ? 2000 + BCDtoDEC(buffer[6]) : 1900 + BCDtoDEC(buffer[6]); in getDate()68 time.weekDay = BCDtoDEC(buffer[3]); in getDate()125 MAXDS3231M::BCDtoDEC(uint8_t data) { in BCDtoDEC() function in MAXDS3231M
130 uint8_t BCDtoDEC (uint8_t data);