16 sendpairsasaddressonly(), 17 dontsendpairsasaddress(), 18 sendallpairsasaddress() – Teledyne LeCroy SAS_SATA Protocol Suite Verification Script Engine Reference Manual User Manual

Page 42: Sasa, Ddress

Advertising
background image


42

9.16 SendPairSASAddressOnly()

This function specifies that ONLY the selected Pair-SAS-Address event be sent to the script,
and no other events be sent.


Format :

SendPairSASAddressOnly( Source SAS Address, Destination SAS Address )



Parameters
Source SAS Address [ format: raw data ]

See SendPairSASAddress() above.

Destination SAS Address [ format: raw data ]

Example

SendPairSASAddressOnly ('5000E85000000001', '5000C50000103D91');
# Send only events with the above specified SAS Address Pair.


Remark

If you send two or more events using SendPairSASAddressOnly(), then only the later
function call will be sent to the script. Previous calls will be ignored. For example,

SendPairSASAddressOnly('5000E85000000001', '5000C50000103D91');

# Pair – 1

SendPairSASAddressOnly('500062B000001074', '50060560000003C4');

# Pair – 2
Then only Pair-2 events will be sent to the script.

9.17 DontSendPairSASAddress()

This function specifies NOT to send a selected Pair-SAS-Address event to the script.


Format :

DontSendPairSASAddress(Source SAS Address, Destination SAS Address)



Parameters
Source SAS Address [ format: raw data ]

See SendPairSASAddress() above.

Destination SAS Address [ format: raw data ]

Example

SendAllPairSASAddress();

DontSendPairSASAddress('5000C500001047B5', '5000C50000103D91');
# This sends all events to the script except the one with a pair
# SAS address mentioned inside DontSendPairSASAddress()

9.18 SendAllPairSASAddress()

This function specifies to send events with all possible combinations of the above specified set
of SAS Addresses.

Format :

SendAllPairSASAddress()



Example

SendAllPairSASAddress();

Advertising