Searched refs:hexHigh (Results 1 – 2 of 2) sorted by relevance
269 uint8_t FX_Hex2Dec(uint8_t hexHigh, uint8_t hexLow) { in FX_Hex2Dec() argument270 return (g_FXHex2DecMap[hexHigh] << 4) + g_FXHex2DecMap[hexLow]; in FX_Hex2Dec()
16 uint8_t FX_Hex2Dec(uint8_t hexHigh, uint8_t hexLow);