beautypg.com

Teledyne LeCroy UWBTrainer Exerciser Script Language User Manual

Page 57

background image

LeCroy Corporation

UWBTrainer Exerciser - Generation Script Language Reference Manual

49

# Register Rx Frame condition: Any Rx Frame with error FCS error

# or Unsupported rate error and a lower duration of 65536-131072 us

# ( the lower duration is checked using a declared local variable,

# Upper_Duration_Lo, which is set to the upper byte of Duration_Lo)

RegRxFrmCondition( RX_FRM_COND )

{

RxFrameInfo

{

FCSError =

1

UnsptdRate =

1

Upper_Duration_Lo: 48,16 =

0x0001

}

}

# Register Rx Frame condition: Any Data Frame with duration from

# 15 us to 18 us.

RegRxFrmCondition( RX_FRM_COND )

{

# RxFrameInfo and Frame hdr-payload mask/match pattern can be

# in any order.

RxFrameInfo

{

Duration_Lo =

15

Duration_Hi =

18

}

# hdr-payload mask/match pattern

PLCP

{

FrameType = DATA

}

}

}