
© Copyright 2012 WIZnet Co., Inc. All rights reserved. Ver. 1.118
W7100A / W7100 Debugger Guide
5.3 Run and Stop
This section will explain how to use commands like step in, out, next, and more
Continue
The Continue command runs the program until the Break point is met. To use this command,
click the button on the toolbar or select the Debug menu => Continue. It can also be
done by short key F5.
During the Continuing state, user cannot use the debugging menu. In order to use the
debugging menu, execute the Stop command.
Stop
The Stop command is used to stop the running program. To use this command, click the
button on the toolbar or select the Debug menu => Stop. It can also be done by short
key F6.
The debugging commands (Search, memory view, break point, etc.) are executed only in the Stop state.
Step
The step command is used to run only one specific line among all lines. The Step command is executed
in units of one line of the C code. If there is a Function call, the Step command will enter into the
related Function. After the execution, the debugger is stopped and waits for the next command.
To use this command, click the button on the toolbar or select the Debug menu => Step. It
can also be done by short key F11. If the user has only the HEX file to debug, the
Step command executes one instruction, just like the Stepi command.
Next
The Next command is basically the same as the Step command. The Next command is executed in units
of one line of the C code. But if there is a Function call, the Next command does not enter into the
Function. After the execution, the debugger is stopped and waits for the next command.
To use this command, click the button on the toolbar or select the Debug menu => Next. It
can also be done by short key F10. If the user has only the HEX file to debug, the
Step command executes one instruction, just like the Nexti command.
Stepi
The Stepi command executes only one instruction. If the instruction is a Function call, the command
enters into the related Function. After the execution, the debugger is stopped and waits for the next
command.
To use this command click the button on the toolbar or select the Debug menu => Stepi. It
can also be done by short key F7.