I need a scriptlet to turn data values like:
<d8 27 00 00>
Into hexadecimal values like:
0x000027d8
Basically, you take out all the spaces and the “<” and “>” from the data value, and then you read the numbers backwards, and add “0x” to the beginning.
Thanks