Searched refs:ui8BCDByte (Results 1 – 1 of 1) sorted by relevance
59 bcd_to_dec(uint8_t ui8BCDByte) in bcd_to_dec() argument61 return (((ui8BCDByte & 0xF0) >> 4) * 10) + (ui8BCDByte & 0x0F); in bcd_to_dec()
Completed in 4 milliseconds