Users Manual Instruction Manual
153
CATC BTTRAINER 2.11 CHAPTER
User’s Manual
HCICATCMaxSlot
HCICATCMaxSlot(HCI_Handle,MaxSlot)
Return Events
• Command Status event will return after the operation has started
• Command Complete: Will return after the operation has been com-
pleted.
Comment
Command Complete event will return after the operation has completed:
LMP_Max_Slot PDU was sent.
Used in Test Cases
Example
Main()
{
Device = '008037163567';
MaxSlot = 1;
result = HCICatcMaxSlot(Device, MaxSlot);
Trace("HCICatcMaxSlot: ", result, "\n");
if(result != "Success")
{
return result;
}
MaxSlot = 3;
result = HCICatcMaxSlot(Device, MaxSlot);
Trace("HCICatcMaxSlot: ", result, "\n");
if(result != "Success")
{
return result;
}
MaxSlot= 5;
Parameter Meaning Default Value Comments
HCI_Handle
2 Bytes
MaxSlot
1 Byte
According to the LMP_MaxSlot PDU in the
Bluetooth 1.1 HCI specification
Test Case
TP/LIH/BV-64-C