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.

Debugging TI 28335 Peripheral Kit

Hi.

I am able to flash the .out file for the Periph-Runall.pjt project I have compiled without any problems.  I can debug as well.  Also, I can use the GUI program to connect serially and download the .a00 program file to the MCU.  What I would like to do and am having trouble with is to debug the MCU with Code Composer while I'm using the GUI Program.  If I try connecting the debugger (XDS510LC USB) while I am currently connected with the GUI program, the GUI program ceases to communicate.  Is there a way that I can accomplish this?

Thanks,

Omer Peleg

  • Hi Omer,

    Try first connecting and running the program with CCS and then connecting using the GUI.  Make sure you disable "load program on connect" in the GUI setup.

  • Hello Omer

    Most likely this is what going on - when you are running GUI standalone it means you are running the code. Now if you try to connect debugger then debugger will get the control of the device and will reset the device as well, in other words all previously running code will stop executing. This is why I think your GUI gets disconnected when you try to connect to debugger.

  • Thank you both for your quick responses.  I should have seen that option to not load the program on connection, but I had missed it.  Its working now.

    Thanks again.