Part Number: TMS320F28069M
Tool/software: Code Composer Studio
Hello,
I currently have a program and I am using the HEX utility to generate a .hex file that my bootloader uses to flash the microcontroller. All of this works ok.
Now, I would like to be able to use the same bootloader to flash an entire sector (Sector H) with calibration tables. Currently when I compile the program using CCS a get a .hex file with all of the program. I would like to have two .hex files output. One with the main program and another one that simply contains all of the calibration tables in flash sector H. I have been reading through the compiler manual and searching for posts in the forum and couldn't find anything like it. Any idea about how to do this?
I think I can force the linker to place the calibration tables in sector H by using:
#pragma DATA_SECTION(Calibration_Table1, "Calibration_Tables")
However I still get a single .hex file. This calibration tables are simply big matrices (45x45 float).