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.

RTOS/TM4C1294NCPDT: Updating startup file for TI-RTOS based application

Part Number: TM4C1294NCPDT

Tool/software: TI-RTOS

Hi,

I am developing an embedded application on TM4C1294NCPDT using TI-RTOS V2.16.

Is it possible to update startup file for TI-RTOS application project ?

If Yes, then please let me know how can I update it ?

Thanking you,

Best Regards,

Harshal

  • Hi Harshal,

    Take a look at the "SYS/BIOS Startup Sequence" section in the SYS/BIOS User Guide. We have several hooks that allow users to add in their code. For example if you have this in your .cfg

    Reset = xdc.useModule('xdc.runtime.Reset');
    Reset.fxns[Reset.fxns.length++] = '&myReset';

    Your myReset function will be called very early on in the boot (basically the first thing in c_int00 and before the system stack is created).

    Todd