C
BYTE btohexa_low( BYTE b );
Description
Converts the lower nibble of a binary value to a hexadecimal ASCII byte. For example, btohexa_high(0xAE) will return 'E'.
Preconditions
None
Parameters
Parameters |
Description |
b |
the byte to convert |
Returns
The lower hexadecimal ASCII byte '0'-'9' or 'A'-'F'.