Good day to all of you, I want to ask something
I have hex like this
6B800800 42BBD001 BD769B3C DA010100 BAFFFFFF 00000000 01009A53 34DB
1. I want to get the 42BBD001 hex and turn it structure like this 01D0BB42. Is it possible? Is it using string manipulation (char at()) ) and store it to an array and construct it again by calling one by one or is there any other method?
2. Second of all, how to convert the hex to decimal? Is it use the "hextoByte" function and pass it to the other function "IntfromByte" that found in the byteconv library?I want to turn this hex "01D0BB42" to ssomething like this in decimal "30456642"
Thanks in advance
I have hex like this
6B800800 42BBD001 BD769B3C DA010100 BAFFFFFF 00000000 01009A53 34DB
1. I want to get the 42BBD001 hex and turn it structure like this 01D0BB42. Is it possible? Is it using string manipulation (char at()) ) and store it to an array and construct it again by calling one by one or is there any other method?
2. Second of all, how to convert the hex to decimal? Is it use the "hextoByte" function and pass it to the other function "IntfromByte" that found in the byteconv library?I want to turn this hex "01D0BB42" to ssomething like this in decimal "30456642"
Thanks in advance