Part Number: TMS320F280039C-Q1
Hello,
I am using sys config to generate the linker CMD file, and I want a hex file filled with dummy values (0xff) for unused addresses.
For example, if I have a flash section in the linker file from address 0x00 to 0x800 and the size of the application is 0x400 only, the hex file will be generated until address 0x400 only, unless I add in the linker file keyword fill = 0xff, as follows
APPLICATION : origin = 0x0000, length = 0x800, fill=0xff.
my issue is I can't add fill=0xff using the sys config.
so, is there any way to add it using sys config?
or is there another way to achieve the same goal using C2000 Linker options or C2000 Hex utility in the project properties?