Hello
I assume you are using CodeWarrior for HC08 and you are building from the IDE.
If this sis the case, in order to generate an Intel Hex file rather than a S record file at the end of the build process, do the following:
- Open the file burner.bbl from your project in an edit window.
- Change the line "format=motorola" to "format=intel"
- Change the line OPENFILE "%ABS_FILE%.s19" into
OPENFILE "%ABS_FILE%.hex"
- Save the changes and force a rebuild of the project.
A Intel Hex file will be generated at the end of the build process rather than a S record file.
I hope this helps.
CrasyCat