Teledyne LeCroy Merlins Wand - CSL manual (CATC Scripting Language Manual) User Manual

Page 69

Advertising
background image

63

CATC Scripting Language for Bluetooth Analyzers

CATC

Manual Ver. 1.21

DecodedBytes = DecodedBytes + 2;

}

ShowFilterMultiAddrSet()

{

if ( IsNotEnoughBnepData(2, 1) ) return 0;

length = NextNBits(16);

AddCell("list length", Format("%d", length), "Length of the start and end range of multicast IEEE
address range list", Bnep_color);

DecodedBytes = DecodedBytes + 2;

if ( IsNotEnoughBnepData(length, 1) ) return 0;

decoded = 0;

while ((length - decoded) > 11)

{

start = Format( "0x%04X" , NextNBits(16));

start = start + Format( "%04X" , NextNBits(16));

start = start + Format( "%04X" , NextNBits(16));

AddCell("Start", start, "Start of the range of 48 bit Multicast IEEE address not to be filtered",
Bnep_color);

end = Format( "0x%04X" , NextNBits(16));

end = end + Format( "%04X" , NextNBits(16));

end = end + Format( "%04X" , NextNBits(16));

AddCell("End", end, "Start of the range of 48 bit Multicast IEEE address not to be filtered",
Bnep_color);

decoded = decoded + 12;

DecodedBytes = DecodedBytes + 12;

Advertising