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.

LAUNCHXL2-570LC43: Patching variable while debugging

Part Number: LAUNCHXL2-570LC43

Does anyone know how to patch a variable while debugging in Code Composer using the TI compiler tool chain?

In GDB (using the Gnu tool chain), variable patching would be done via:

p my_var=25                       // set my_var to 25, then display my_var

p my_var                              //  display my_var

Thanks.