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.

TMS320F28379D: How to start program from RAM using DSS or DSlite?

Part Number: TMS320F28379D


Tool/software:

Hi,

I developed a bootloader, it works when I load it in CSS debug perspective.
My goal is to automate this process.
I would like:
(1) to load hex file to RAM,
(2) start its execution from specific RAM address.

How to make step [2]?

[Edit] I found the solution:

 debugSession.memory.loadProgram( filename );
 debugSession.memory.writeRegister( "PC", 0x10000 );
 debugSession.target.runAsynch();

Regards,
Piotr Romaniuk