beautypg.com

Dontsendlevel(), Sendchannel(), Evel – Teledyne LeCroy SATracer 3G Verification Script Engine manual User Manual

Page 36: Hannel, 3 dontsendlevel(), 4 sendchannel()

background image

LeCroy Corporation

Verification Script Engine Reference Manual

Version 1.01

8.3 DontSendLevel()

This function specifies that events of the specified transaction level should NOT be sent to the
script.

Format :

DontSendLevel( level )



Parameters: level – This parameter can be one of following values:


_LINK

– ( value 0 ) do not send Link level events

_ATA

– ( value 4 ) do not send ATA Command level events


Example:

DontSendLevel( _LINK ); # - DO NOT send Link level events



8.4 SendChannel()

This function specifies that events that have occurred on the specified channel should be sent to

script.

Format :

SendChannel( channel )



Parameters: channel – This parameter can be one of following values:


_CHANNEL_1 ( = 1 ) – send events from Channel I1

_CHANNEL_2 ( = 2 ) – send events from Channel T1

_CHANNEL_3 ( = 3 ) – send events from Channel I2

_CHANNEL_4 ( = 4 ) – send events from Channel T2

_CHANNEL_5 ( = 5 ) – send events from Channel I3

_CHANNEL_6 ( = 6 ) – send events from Channel T3

_CHANNEL_7 ( = 7 ) – send events from Channel I4

_CHANNEL_8 ( = 8 ) – send events from Channel T4


Example:

SendChannel(_CHANNEL_1); # - send events from Channel I1

31