7.1.5 Create Connection command
| 1689 | |
| 1690 | |
| 1691 | class HCI_Cmd_Create_Connection(Packet): |
| 1692 | """ |
| 1693 | 7.1.5 Create Connection command |
| 1694 | """ |
| 1695 | name = "HCI_Create_Connection" |
| 1696 | fields_desc = [LEMACField("bd_addr", None), |
| 1697 | LEShortField("packet_type", 0xcc18), |
| 1698 | ByteField("page_scan_repetition_mode", 0x02), |
| 1699 | ByteField("reserved", 0x0), |
| 1700 | LEShortField("clock_offset", 0x0), |
| 1701 | ByteField("allow_role_switch", 0x1), ] |
| 1702 | |
| 1703 | |
| 1704 | class HCI_Cmd_Disconnect(Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…