Are you sure it is not pairs like '3F', 'E3','58','53'?
If it is the you can use HEX modifier.
e.g. HSERIN [hex2 byte1, hex2 byte2, hex2 byte3, hex2 byte4]
Ioannis
Are you sure it is not pairs like '3F', 'E3','58','53'?
If it is the you can use HEX modifier.
e.g. HSERIN [hex2 byte1, hex2 byte2, hex2 byte3, hex2 byte4]
Ioannis
Or this might be one option and you can make it easily scalable beyond 8 bit input string...
Code:Hex_input var byte ASCII_Array VAR BYTE [8] i var byte for i = 0 to 7 DEBUGIN [HEX1 Hex_input] ASCII_Dec_Array[i] = Hex_input next i
Thank you. That will work.
John
Bookmarks