Hi,
I am trying to use binpack.exe application from TivaWare with a *.bin file generated from TI-RTOS based project. Binpack.exe requires its input file to have a special 8 word header placed right after the interrupt vector table.
How can I achieve that with TI-RTOS?
I have defined a table and a memory section :
#pragma DATA_SECTION(g_infoHeader, ".infoheader")
uint32_t const g_infoHeader[] =
{
0xFF01FF02,
0xFF03FF04,
0xFFFFFFFF,
0xFFFFFFFF,
0xFFFFFFFF,
0xFFFFFFFF,
0xFFFFFFFF,
0xFFFFFFFF
};
But I cannot find a way to place it (the .infoheader section) right after the .resetVecs section in the compilation output file.
I will greatly appreciate any help.
Thank you,
Peter A.