We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello Friends,i have question about the BreakSet command. Is there a way to set a Breakpoint on the line number where a function is called WITHOUT using the line number ?
for example:
void main() { // do something TestFunction(); // do something TestFunction(); } void TestFunction() { // do something }
I want to set a Breakpoint on the second call of TestFunction (line 7).
Thanks for your help :) Hannes
you can use the conditional breakpoint set debug command, as described here https://www.keil.com/support/man/docs/uv4/uv4_cm_breakset.htm
check the example No. 4 on the page above
Hello, So thanks for your reply :) You are right for this example that way would work. But i need to do this in a more Generic way.