Sendotherframes(), Ther, Rames – Teledyne LeCroy UWBTracer Verification Script Engine Manual User Manual
Page 45: 20 sendotherframes()

LeCroy Corporation
Verification Script Engine Manual, version 2.2
9.20 SendOtherFrames()
This function specifies more precise tuning for "other" frames (having a reserved frame type).
Format:
SendOtherFrames(dest_id, src_id, subtype)
Parameters:
dest_id
This parameter specifies that only "other" frames containing Destination Id with the
same value are sent. (The value_ANY means any Destination Id is accepted.)
src_id
This parameter specifies that only "other" frames containing Source Id with the
same value are sent. (The value_ANY means any Source Id is accepted.)
sub_type
This parameter specifies that only "other" frames having SubType field with the
same value are sent. (The value_ANY means any SubType is accepted.)
Example:
# Send any "other" frames.
SendOtherFrames();
# Send "other" frames having Destination Id 0xBEEF.
SendOtherFrames (0xBEEF);
# Send "other" frames having Destination Id = 0xBEEF and Source Id = 0xAABB.
SendOtherFrames (0xBEEF, 0xAABB);
# Send "other" frames having Frame SubType = 14.
SendOtherFrames (_ANY, _ANY, 14);
Page 45 of 95