Dontsendchannel(), Hannel, 6 dontsendchannel() – Teledyne LeCroy UWBTracer Verification Script Engine Manual User Manual

Page 31

Advertising
background image

LeCroy Corporation

Verification Script Engine Manual, version 2.2





9.6 DontSendChannel()


This function specifies that events occuring on a specified channel should NOT be sent to the script.


Format:

DontSendChannel (channel)



Parameters:

channel

This parameter can be one of following values:

_MPI (= 1): DO NOT send events from MPI channel

_RF (= 2): DO NOT send events from RF channel

_MPI_DEC (= 3): DO NOT send events from MPI decrypted channel

_RF_DEC (= 4): DO NOT send events from RF decrypted channel

_CHANNEL_1 (= 1): DO NOT send events from channel 1 (MPI)

_CHANNEL_2 (= 2): DO NOT send events from channel 2 (RF)

_CHANNEL_3 (= 3): DO NOT send events from channel 3 (MPI decrypted)

_CHANNEL_4 (= 4): DO NOT send events from channel 4 (RF decrypted)


Example:

DontSendChannel(_RF); # DO NOT send events from RF channel.

DontSendChannel(_MPI_DEC); # DO NOT send events from MPI decrypted channel.


DontSendChannel(_CHANNEL_2); # DO NOT send events from channel 2 (RF).

DontSendChannel(_CHANNEL_3); # DO NOT send events from channel 3.

# (MPI_DEC)

DontSendChannel(2); # DO NOT send events from channel 2 (RF).

DontSendChannel(3); # DO NOT send events from channel 3 (MPI_DEC).

Page 31 of 95



Advertising