beautypg.com

17 breakloop instruction, Breakloop instruction – Teledyne LeCroy UWBTrainer Exerciser Script Language User Manual

Page 73

background image

LeCroy Corporation

UWBTrainer Exerciser - Generation Script Language Reference Manual

65

9.17 BreakLoop Instruction

You can break Loop instruction code execution and jump to the next after Loop instruction.

Format

BreakLoop

Example

Main

{

# Start 100 us timer

StartTimer(

100

)

# Run an infinite loop.

Loop

{

# Break the loop after timer expires.

If_Condition( TIMER ) { BreakLoop }

Send

TX_FRAME

}

}