Sendbeaconframes(), Eacon, Rames – Teledyne LeCroy UWBTracer Verification Script Engine Manual User Manual
Page 40: 15 sendbeaconframes()

LeCroy Corporation
Verification Script Engine Manual, version 2.2
9.15 SendBeaconFrames()
This function specifies more precise tuning for Beacon frames.
Format:
SendBeaconFrames (dest_id, src_id, subtype)
Parameters:
dest_id
This parameter specifies that only Beacon 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 Beacon 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 Beacon frames having SubType field with the same
value are sent. (The value_ANY means any SubType is accepted.)
Example:
# Send any Beacon frames.
SendBeaconFrames();
# Send Beacon frames having Destination Id 0xBEEF.
SendBeaconFrames(0xBEEF);
# Send Beacon frames having Destination Id = 0xBEEF and Source Id = 0xAABB.
SendBeaconFrames(0xBEEF, 0xAABB);
# Send Beacon frames having Frame SubType = 14.
SendBeaconFrames(_ANY, _ANY, 14);
Page 40 of 95