Rick Jenkins wrote:
The compiler generates an intel hex file complete with the start address
record, which is record type 3 ( see the Intel document at
http://www.microsym.com/intelhex.pdf ).
The jtag.py script in pyjtag has no way to handle such a field, so on every
use it produces the error message:
Ignored unknown field (type 0x03) in ihex file.
it is NOT an error. it would abort if it were one... it is a warning.
We don't need to use this field, but it would be nice if the script cleanly
ignored it.
yep, and as i did not find docs about that field type, i left it
unprocessed and i did not care enough to change it until now ;-)
the doc above clearly state what the field is and i can now savely
ignore that 0x03 and other ids.
the updated version is in the CVS for bsl.py and jtag.py
chris