After setting a breakpoint as follows:
var bp1 = mySession.breakpoint.add("myFile.c", 22);
Is it possible to access and modify the breakpoint properties associated with bp1? If so, how?
Thanks.
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.
After setting a breakpoint as follows:
var bp1 = mySession.breakpoint.add("myFile.c", 22);
Is it possible to access and modify the breakpoint properties associated with bp1? If so, how?
Thanks.
Hello,
You will need to create a breakpoint property object first and then pass in the object when adding a new breakpoint. See the below link for more information:
https://software-dl.ti.com/ccs/esd/documents/users_guide/sdto_dss_handbook.html#breakpoints
Thanks
ki