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/AWR1642BOOST: How to set break points

Part Number: AWR1642BOOST

Tool/software: Code Composer Studio

Hi team,

I am working on AWR1642BOOST. I have imported one of the demo project from mmwave automotive toolbox. I have set some breakpoints in CCS (DSS project) but it is not working, not entering the breakpoints.

is there any specific procedure to set breakpoints and make it working?

Thanks,

Arun 

  • For putting the breakpoints to source file it must be mapped to loaded image else CCS won't recognize it.
    And other option to put the breakpoint via Disassembly window (CCS menu->view->Disassembly) where you need to search for the function you wish to put the breanckpoint and then double click on that disassembly code.
    Or you can add breakpoint providing address location in Breakpoint window (menu->breakpoint) where you need to click on new-breakpoint button and fill in location.

    Regards,
    Jitendra
  • Thank you Jitendra.