User Manual

Table Of Contents
190
CATC MERLINS WAND 1.22 APPENDIX C
Users Manual Merlin’s Wand Scripting Commands
Return values
Returns a list with two values: status and features.
Status (element 0) is one of the following:
“Success”
“Failure”
Features (element 1) is the eight-byte bit mask list of Link Manager Proto-
col features.
Comments
Reads the LMP supported features for the local device.
Example
result = HCIReadLocalSupportedFeatures();
Trace("HCIReadLocalSupportedFeatures returned: ",
result[0], "\n");
if (result[0] == "Success")
{
Trace("Local supported features data is: ", result[1],
"\n");
}
HCIReadLocalVersionInformation()
HCIReadLocalVersionInformation()
Return values
Returns a list with six values: status, HCI version, HCI revision, LMP ver-
sion, manufacturer name, and LMP subversion.
Status (element 0) is one of the following:
“Success”
“Failure”
HCI version (element 1) is the one-byte HCI version value. (0=1.0B,
1=1.1.)
HCI revision (element 2) is the two-byte HCI revision value.
LMP version (element 3) is the one-byte Link Manager Protocol version
value.
Parameter Meaning Default Value Comments
N/A