beautypg.com

11 until instructions, Until instructions, Until inst – Teledyne LeCroy UWBTrainer Exerciser Script Language User Manual

Page 64: 56 until_all in, 56 until_any in

background image

LeCroy Corporation

UWBTrainer Exerciser - Generation Script Language Reference Manual

56

9.11 Until Instructions

You can execute some code while waiting for some conditions.

Formats

Execute until ANY one of the condition(s) specified triggers:

Until( condition_name_1

[

, condition_name_2, ...

]

)

Execute until ANY one of the condition(s) specified triggers (the same as Until):

Until_Any( condition_name_1

[

, condition_name_2, ...

]

)

Execute until ALL condition(s) specified trigger:

Until_All( condition_name_1

[

, condition_name_2, ...

]

)

Note: Until / Until_Any perform a logical OR on the conditions specified. Until_All performs a
logical AND on the conditions specified.

Examples

Main

{

# Register a Header condition.

RegRxFrmCondition( HDR_COND, YES )

{

# Header Mask/Match

PLCP

{

DestAddr =

0xAABB

SrcAddr =

0xBEEF

}

}

# Start the timer and register the auto_reset “TIMER” condition.

StartTimer(

2000

, YES )

# Send frames during 2000 microseconds.

Until( TIMER )

{

# Send frames.

Send

WM_FRAME ( Delay =

1000

)

}