Sendchannelonly(), Dontsendchannel (), Hannel – Teledyne LeCroy SATracer 3G Verification Script Engine manual User Manual
Page 37: 5 sendchannelonly(), 6 dontsendchannel ()
![background image](/manuals/353603/37/background.png)
LeCroy Corporation
Verification Script Engine Reference Manual
Version 1.01
8.5 SendChannelOnly()
This function specifies that ONLY events that have occurred on the specified channel should be
sent to the script.
Format :
SendChannelOnly( 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:
…
SendChannelOnly( _CHANNEL_1 ); # - send ONLY events from Channel I1
8.6 DontSendChannel
()
This function specifies that events that have occurred on the specified channel should NOT be
sent to the script.
Format :
DontSendChannel ( 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:
…
DontSendChannel ( _CHANNEL_1 ); # - DO NOT send events from Channel I1
32