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

Page 75

Advertising
background image

69

CATC Scripting Language for Bluetooth Analyzers

CATC

Manual Ver. 1.21

[ "x" , "" , "unknown UUID" ],

[ "1115" , "PANU" , "PAN user" ],

[ "1116" , "NAP" , "Network Access Point" ],

[ "1117" , "GN" , "General Networking t" ]

];

ShowDestUUID(str)

{

uuid_row = Find(BNEP_SDP_UUID_table, str);

AddCell("Dest UUID",

select {

uuid_row[1] == "" : "0x" + str;

uuid_row[1] == null: "0x" + str;

default : uuid_row[1];

}

,"Destination SDP service UUID\n" + "0x" + str + " - " + uuid_row[2],

Bnep_color);

}

ShowSourceUUID(str)

{

uuid_row = Find(BNEP_SDP_UUID_table, str);

AddCell("Source UUID",

select {

uuid_row[1] == "" : "0x" + str;

uuid_row[1] == null: "0x" + str;

default : uuid_row[1];

}

,"Source SDP service UUID\n" + "0x" + str + " - " + uuid_row[2],

Bnep_color);

}

ShowEtherProtocol(protocol)

{

protocol_row = Find( EthernatProtocolsTable, protocol);

AddCell("NetProtocol",

Advertising