Tool/software: Code Composer Studio
Hi ,
Is there a command to generate 2 binary files for same project that covers 2 different address ranges ?.
I am working with a project that generates ECC for the Flash region of TMS570LS3137 this generate too huge .bin file of 3.843GB ( 0x00020000 to 0xF0400000 ) , and limits our .bin file generation capability .
Option is to generate 2 binary files of the SAME PROJECT for 2 different FLASH regions (one for code and one for ECC ) and burn the .bin files to make the project work as a single project with ECC enabled .
If I try to Generate .bin or Binary file for the long range address the .bin file would be too large and fill all the region with 0x00 is .bin file of 3.843GB ( 0x00020000 to 0xF0400000 ) .
To Overcome this long range addressing we have to generate HEX file as the non required regions are not filled in .HEX file.
We have to use .hex file generated but our tool does not support .hex files .
In our Project we have code FLASH area at following address
VECTORS (X) : origin=0x00020000 length=0x00000020
And the respective ECC Flash at following address
ECC_VECTORS (R) : origin=0xF0400000 length=0x000004 ECC={ input_range=VECTORS, algorithm=eccalgorithm, fill=true }