Sending functions, Sendlevel(), Sendlevelonly() – Teledyne LeCroy SATracer 3G Verification Script Engine manual User Manual
Page 35: 8 sending functions, Evel, 1 sendlevel(), 2 sendlevelonly()
![background image](/manuals/353603/35/background.png)
LeCroy Corporation
Verification Script Engine Reference Manual
Version 1.01
8 Sending Functions
This topic contains information about the special group of VSE functions designed to specify
which events the verification script should expect to receive.
8.1 SendLevel()
This function specifies that events of the specified transaction level should be sent to the script.
Format :
SendLevel( level )
Parameters: level – This parameter can be one of following values:
_LINK
– ( value 0 ) send Link level events
_ATA
– ( value 4 ) send ATA Command level events
Note: only Packet and Link Transaction level events are available in release 4.4 of PETracer software.
Example:
…
SendLevel( _LINK); # - send Link level events
Remark:
If no level was specified – events of packet level will be sent to the script by default.
8.2 SendLevelOnly()
This function specifies that ONLY events of the specified transaction level should be sent to the
script.
Format :
SendLevelOnly( level )
Parameters: level – This parameter can be one of following values:
_LINK
– ( value 0 ) send Link level events
_ATA
– ( value 4 ) send ATA Command level events
Example:
…
SendLevelOnly( _LINK ); # - send ONLY Link level events
30