Debugger Engine Commands
Debugger Commands
825
Microcontrollers Debugger Manual
Example:
in>STEPINTO
STEP INTO
TRACED
TRACED in the status line indicates that the application is stopped by an assembly
step function.

STEPOUT

The STEPOUT command executes the remaining lines of a function in which the current
execution point lies. The next statement displayed is the statement following the
procedure call. All of the code is executed between the current and final execution points.
Using this command, you can quickly finish executing the current function after
determining that a bug is not present in the function.
NOTE This command works while the application is paused in break mode (program
is waiting for user input after completing a debugging command).
Usage
STEPOUT
Components
Debugger engine.
Example:
in>STEPOUT
STEP OUT
STARTED
RUNNING
STOPPED
STOPPED in the status line indicates that the application is stopped by a step out
function.