You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,10 +73,10 @@ During debugging, the **Debug toolbar** contains actions to control the flow of
73
73
74
74
| Action | Description |
75
75
|--------|-------------|
76
-
| Continue/Pause |**Continue**: Resume normal program/script execution (up to the next breakpoint).<br>**Pause**: Inspect code executing at the current line and debug line-by-line. |
77
-
| Step Over | Execute the next method as a single command without inspecting or following its component steps. |
78
-
| Step Into | Enter the next method to follow its execution line-by-line. |
79
-
| Step Out | When inside a method or subroutine, return to the earlier execution context by completing remaining lines of the current method as though it were a single command. |
76
+
| Continue/Pause |**Continue**: Resume normal program execution (up to the next breakpoint).<br>**Pause**: Inspect code executing at the current location. |
77
+
| Step Over | Execute the next statement as a single command without inspecting or following its component steps. |
78
+
| Step Into | Enter the next statement to follow its execution line-by-line. |
79
+
| Step Out | When inside a function, return to the earlier execution context by completing remaining lines of the current method as though it were a single command. |
80
80
| Restart | Terminate the current program execution and start debugging again using the current run configuration. |
81
81
| Stop/Disconnect |**Stop**: Terminate the current debug session.<br>**Disconnect:** Detach debugger from a core without changing the execution status (running/pause). |
82
82
| Debug Session | For multi-core devices, the list of active debug sessions and switch between them. |
@@ -107,10 +107,10 @@ You can use the Copy Value action to copy the variable's value, or the Copy as E
107
107
108
108
### CALL STACK
109
109
110
-
The **CALL STACK** sections shows objects that are currently on stack. Threads are shown for applications
111
-
that use an RTOS. Each object is associated to its location or value, and type.
110
+
The **CALL STACK** sections shows function call tree that is currently on stack. Threads are shown for applications
111
+
that use an RTOS. Each function call is associated to its location and when source code is available a _line number badge_ is shown. A click on this badge navigates to source file location.
112
112
113
-
The window content is updated whenever program execution stops. A click on a _line number badge_ in the call stack window navigates to source file location.
113
+
The window content is updated whenever program execution stops.
0 commit comments