Debugger Engine Commands
Debugger Commands
832
Microcontrollers Debugger Manual

UNFOLD

In the Source component, the UNFOLD command is used to display the contents of
folded source text blocks, for example, source text that has been collapsed at program
block level. All text is unfolded once or (*) completely, until no more folded parts are
found.
Usage
UNFOLD [*]
Where * means unfolding completely, otherwise unfolding only one level.
Components
Source component.
Example:
in>UNFOLD *

UNTIL

The UNTIL keyword is associated with the REPEAT command.
Usage
UNTIL condition
Where condition is defined as in ā€œCā€ language definition.
Components
Debugger engine.
Example:
repeat
open assembly
wait 20
define i = i + 1
until i==3
At the end of the loop, i = 3.