Searched refs:bcd (Results 1 – 2 of 2) sorted by relevance
105 uint8_t from_bcd(uint8_t bcd) { in from_bcd() argument106 return ((bcd >> 4) * 10) + (bcd & 0xf); in from_bcd()
29 uint8_t from_bcd(uint8_t bcd);
Completed in 3 milliseconds