I have a Hexadecimal-String looking like this:
char hexString = "1a";
and i want to convert it to a BYTE, so that it looks like this:
BYTE Anything[0x10] = { 0x1a };
after the converion. i need to do this for 16 strings so that i have sth looking like this at the end
BYTE Anything[0x10] = { hexToByte(hexString1), hexToByte(hexString2), 16 times };
any idea, because i have no clue on how to do this!