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/CC3200MOD: Run a Batch File on start of every debug session in CCS6.2

Part Number: CC3200MOD
Other Parts Discussed in Thread: CC3200

Tool/software: Code Composer Studio

Hi,

I have cc3200 launchpad, but when i launch a debug session I need to close my tera term terminal and then restart it again

This is a physical pain - evrytime for 8 hrs a day is hard thing

i wrote this batch script called pain.exe i want this to be called by CCS 6.2 everytime I launch debug session

Regards

Shashank

  • Hello ,

    Any update on this ?

    Regards

    Shashank

  • Shashank,

    The easiest way to do this would be to modify the GEL startup file that your target configuration is using to run the command in the Startup() function. For CC3200 your GEL startup file is likely cc3200.gel which is located in /ccs_base/emulation/gel

    If you open that file you will see a StartUp() function at the top of the file. This function runs every time you launch the debugger before you connect to the device. At the moment it is just setting up the memory map. You could add a call to GEL_System() in this function

    It would need to look something like GEL_System("C:/Temp/pain.exe");

    Regards,
    John
  • Thanks this works