Convert input hex string to array of 32-bits integers
Converts the char into the equivalent nibble. Ex: 'a' -> 0xa, 'A' -> 0xa, '9'->0x9
Note: None.
Prototype
u32 Xil_ConvertCharToNibble(u8 InChar, u8 *Num);
Parameters
The following table lists the Xil_ConvertCharToNibble function arguments.
| Type | Member | Description |
|---|---|---|
| u8 | InChar | - Input character to be converted to nibble. Valid characters are between 0-9, a-f, A-F |
| u8 * | Num | - Memory location where nibble is to be stored |