when we are debuging automatic breakpoint is coming near main. how to resolve this issue.
Asked
Active
Viewed 724 times
1
-
1Try Run->Remove All Breakpoints. Atollic has the odd issue with random breakpoints. – Jon Apr 19 '19 at 09:46
1 Answers
1
You can change this behavior in Debug Configurations.
In the Startup Scripts tab there is a Target Software Startup Script. In the script is the line:
tbreak main
This line makes a temporary breakpoint at main()
, which is removed when you continue running your code.
Remove this line to remove the breakpoint.

Greenonline
- 2,064
- 7
- 23
- 38

Wisse
- 11
- 1
- 2