I'm trying to read part hex data from an intelhex file using Intelhex package of python 3.6. Using following code I opened the file and tried to convert to dictionary if it helps.
ih = IntelHex("data.hex")
mydict = ih.todict()
now I have an address
startAddress = some value
I want to read stored data starting from $startAddress delimited to the zero value. What's the best way to perform that?
The following code is the solution. First I converted the IntenHex file to the dictionary:
Then iterated through the dictionary from
startAddress
to the place that value isNone
. I stored values in a string nameddatastr
.