\param encodedByte Must point to at least two ASCII hex characters.
| 41 | //! \param encodedByte Must point to at least two ASCII hex characters. |
| 42 | //! |
| 43 | uint8_t hexByteToInt(const char *encodedByte) |
| 44 | { |
| 45 | return (hexCharToInt(encodedByte[0]) << 4) | hexCharToInt(encodedByte[1]); |
| 46 | } |
nothing calls this directly
no test coverage detected