Tool/software: Code Composer Studio
Hi All,
I am unable to set a breakpoint in the code using Debug Sever Scripting [DSS]. It is never hits the breakpoint and continues to execute the function in infinite loop.
I am not getting any error or warnings from DSS either.
Let me know how to resolve this issue.
Code snippet :-
main.cpp
25 while(1)
26 {
27 func();
28 #breakpoint
39 }
dss.py
bp = debugSession.breakpoint.add(file_path,28) debugSession.target.run()