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

Page 70

Advertising
background image

64

CATC Scripting Language for Bluetooth Analyzers

CATC

Manual Ver. 1.21

}

}

const BNEP_filter_ma_resp_msg_table = [

[ 0x0005 , "Reserved" , "Reservedfor future use" ],

[ 0x0000 , "Success" , "Operation Successful" ],

[ 0x0001 , "Unsupported" , "Unsupported Request" ],

[ 0x0002 , "Bad Address" , "Operation Failed: Invalid Multicast Address" ],

[ 0x0003 , "Limited Reached" , "Operation Failed: Maximum Multicast Address Filter Limit-
edReached" ],

[ 0x0004 , "Unable due to security" , "Operation Failed: Unable to fulfill request due to security"
]

];

ShowFilterMultiAddrRes()

{

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

data = NextNBits(16);

row = Find(BNEP_filter_ma_resp_msg_table, data);

AddCell("message", row[1], Format("0x%04X - ", data) + row[2], Bnep_color);

DecodedBytes = DecodedBytes + 2;

}

Advertising