LeCroy Corporation
Verification Script Engine Reference Manual
Page 36 of 107
8
Sending Functions
This topic contains information about the special group of VSE functions that specify the events the
verification script should expect to receive.
8.1 SendLevel()
This function specifies that events of specified transaction level should be sent to the script.
Currently only frame level events can be sent to verification scripts.
Format:
SendLevel(level)
Parameters:
level
Can be one of following values:
_PKT
: Packet level (value = 0)
_TRA
: Transaction level (value = 1)
_SPL_TRA
: Split Transaction level (value = 2)
_XFER
: Transfer level (value = 3)
Remark:
If no level was specified, events of frame level are sent to the script by default.
Example:
…
SendLevel(_PKT); # Send packet level events.