|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tobinarray(self,
start=None,
end=None,
pad=None)
Convert this object to binary form as array. |
source code
|
|
|
|
tobinstr(self,
start=None,
end=None,
pad=255)
Convert to binary form and return as a string. |
source code
|
|
|
|
tobinfile(self,
fobj,
start=None,
end=None,
pad=255)
Convert to binary and write to file. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__setitem__(self,
addr,
byte)
Set byte at address. |
source code
|
|
|
|
__delitem__(self,
addr)
Delete byte at address. |
source code
|
|
|
|
__len__(self)
Return count of bytes with real values. |
source code
|
|
|
|
|
|
|
|
|
|
gets(self,
addr,
length)
Get string of bytes from given address. |
source code
|
|
|
|
|
|
|
|
|
|
putsz(self,
addr,
s)
Put string in object at addr and append terminating zero at end. |
source code
|
|
|
|
dump(self,
tofile=None)
Dump object content to specified file object or to stdout if None. |
source code
|
|
|
|
merge(this,
other,
overlap='error')
Merge content of other IntelHex object to this object. |
source code
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|