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.

CCS/TMS320F28379D: Starting Multiple Projects on the Same Core

Part Number: TMS320F28379D

Tool/software: Code Composer Studio

Greetings,

I have multiple projects which run on a single core at the same time. Each has its own space in the flash. I can load all of them ,and see that each is there. But I can only start the last project loaded. It would be helpful, in debugging, to be able to run any project, not just the most recently flashed. Is there a way to do that?

Thank you,

Ed

  • Hi Ed,

    Ed Sanders said:
    But I can only start the last project loaded.

    I assume you are referring to when you use the CCS automatic launch when debugging a project. That would always load and run the program associated with the project.

    If you wish to run any program, I suggest doing a manual launch instead and then setting the program counter to the entry point address of the program you wish to run. This is essentially what happens when you do an automatic launch - CCS will: connect to the target, load/flash the program, set the program counter to the entry point of the program, and run to main (if enabled). You can do a manual launch instead and then manually do the above actions yourself (if the program is already in flash, then you will not need to reload/flash).

    Hope this helps

    ki

  • That worked great Ki.

    Thank you,

    Ed