3 dontsendlevel(), 4 sendchannel(), Evel – Teledyne LeCroy SierraFC Verification Script Engine Reference Manual User Manual

Page 23: Hannel

Advertising
background image

Verification Script Engine Reference Manual

18




10.3 DontSendLevel()

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

Format :

DontSendLevel( level )



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

_FRM – DO NOT send Frame level events

_SEQ – DO NOT send Sequence level events


Example:

DontSendLevel( _FRM ); # - DO NOT send frame level events

DontSendLevel( _SEQ ); # - DO NOT send sequence level events




10.4 SendChannel()

This function specifies that events occurred on 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 1

_CHANNEL_2 ( = 2 ) – send events from channel 2

_CHANNEL_3 ( = 3 ) – send events from channel 3

_CHANNEL_4 ( = 4) – send events from channel 4

_CHANNEL_5 ( = 5 ) – send events from channel 5

_CHANNEL_6 ( = 6 ) – send events from channel 6

_CHANNEL_7 ( = 7 ) – send events from channel 7

_CHANNEL_8 ( = 8 ) – send events from channel 8


Example:

SendChannel(_CHANNEL_1); # - send events from channel 1

SendChannel(_CHANNEL_5); # - send events from channel 5

SendChannel( 6 ); # - send events from channel 6

SendChannel( 8 ); # - send events from channel 8

Advertising