This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F28388D: SYSBIOS linker.cmd: modify ".resetVecs:load > 0x200040"

Part Number: TMS320F28388D
Other Parts Discussed in Thread: SYSBIOS

Hi expert,

I think "linker.cmd" is something generated by .cfg file for SYSBIOS so it should not be modified manually. Then a problem comes, where in .cfg file could we change the reset vetor position? For most cases it should not be change for flash entry I think. But what if we need a modification?

Thanks

Sheldon 

  • Hi Sheldon,

    This is controlled in the .cfg for the CortexM devices. For example, in the .cfg you can have the following

    var Hwi = xdc.useModule('ti.sysbios.family.arm.m3.Hwi');
    Hwi.resetVectorAddress = 0x20000000;  

    Todd