Hello,
I'm reusing old code and came across a problem when generating a binary for this old applicaton (for a F2833x)
in previous versions of code generation tools (the old project) the following command is used to generate a binary
i'm porting this code to the F28069 and came across a problem when generating a binary for use with our firmware upload code (via the Flash API)
1. hex2000 myprog.out -m -byte -romwidth 16 -o myprog.mot
we then use a custom tool (code from the internet) that translates a motorola s format to binary and applies an offset
2. srec2bin myprog.mot myprog.bin -o <offset>
to create a binary from it which we program using the Flash API in which the <offset> is the start address of the program code
e.g. for the TMS320F28069 --> 3D8000
---------------
Question:
The commandline arguments to the hex2000 tool have changed, and so the -byte option is not present in current hex2000 releases.
what is the way and the commandline arguments for it to achieve the same binary generation with the hex2000 tool v6.1.0
can the srec2bin part be omitted? Can i generate a binary that can be programmed in flash directly?
--------------
Thanks in advance
Rob