7.1.12 PIN Code Request Reply command
| 1754 | |
| 1755 | |
| 1756 | class HCI_Cmd_PIN_Code_Request_Reply(Packet): |
| 1757 | """ |
| 1758 | 7.1.12 PIN Code Request Reply command |
| 1759 | """ |
| 1760 | name = "HCI_PIN_Code_Request_Reply" |
| 1761 | fields_desc = [LEMACField("bd_addr", None), |
| 1762 | ByteField("pin_code_length", 7), |
| 1763 | NBytesField("pin_code", b"\x00" * 16, sz=16), ] |
| 1764 | |
| 1765 | |
| 1766 | class HCI_Cmd_PIN_Code_Request_Negative_Reply(Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…