Searched refs:encodedByte (Results 1 – 2 of 2) sorted by relevance
31 uint8_t hexByteToInt(const char * encodedByte) in hexByteToInt() argument33 return (hexCharToInt(encodedByte[0]) << 4) | hexCharToInt(encodedByte[1]); in hexByteToInt()
19 uint8_t hexByteToInt(const char * encodedByte);