From aff8ac5c9890c482a12b01b8d42aa436c60d0ce5 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Sun, 7 Jun 2009 21:15:09 +0000 Subject: [PATCH] added remote name request (cancel) cmds --- src/hci.c | 29 ++++++++++++++++------------- src/hci.h | 2 ++ 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/src/hci.c b/src/hci.c index 9aa8e2e21..7db5cf235 100644 --- a/src/hci.c +++ b/src/hci.c @@ -21,30 +21,33 @@ hci_cmd_t hci_inquiry = { OPCODE(OGF_LINK_CONTROL, 0x01), "311" // LAP, Inquiry length, Num_responses }; - hci_cmd_t hci_inquiry_cancel = { -OPCODE(OGF_LINK_CONTROL, 0x02), "" -// no params + OPCODE(OGF_LINK_CONTROL, 0x02), "" + // no params +}; +hci_cmd_t hci_create_connection = { + OPCODE(OGF_LINK_CONTROL, 0x05), "B21121" + // BD_ADDR, Packet_Type, Page_Scan_Repetition_Mode, Reserved, Clock_Offset, Allow_Role_Switch }; - hci_cmd_t hci_link_key_request_negative_reply = { OPCODE(OGF_LINK_CONTROL, 0x0c), "B" }; - hci_cmd_t hci_pin_code_request_reply = { OPCODE(OGF_LINK_CONTROL, 0x0d), "B1P" // BD_ADDR, pin length, PIN: c-string }; +hci_cmd_t hci_remote_name_request = { + OPCODE(OGF_LINK_CONTROL, 0x19), "B112" + // BD_ADDR, Page_Scan_Repetition_Mode, Reserved, Clock_Offset +}; + hci_cmd_t hci_remote_name_request_cancel = { + OPCODE(OGF_LINK_CONTROL, 0x1A), "B" + // BD_ADDR +}; hci_cmd_t hci_reset = { OPCODE(OGF_CONTROLLER_BASEBAND, 0x03), "" }; - -hci_cmd_t hci_create_connection = { - OPCODE(OGF_LINK_CONTROL, 0x05), "B21121" - // BD_ADDR, Packet_Type, Page_Scan_Repetition_Mode, Reserved, Clock_Offset, Allow_Role_Switch -}; - hci_cmd_t hci_write_page_timeout = { OPCODE(OGF_CONTROLLER_BASEBAND, 0x18), "2" // Page_Timeout * 0.625 ms @@ -61,8 +64,8 @@ hci_cmd_t hci_host_buffer_size = { }; hci_cmd_t hci_read_bd_addr = { -OPCODE(OGF_INFORMATIONAL_PARAMETERS, 0x09), "" -// no params + OPCODE(OGF_INFORMATIONAL_PARAMETERS, 0x09), "" + // no params }; diff --git a/src/hci.h b/src/hci.h index 133ece849..468dd383b 100644 --- a/src/hci.h +++ b/src/hci.h @@ -186,5 +186,7 @@ extern hci_cmd_t hci_create_connection; extern hci_cmd_t hci_host_buffer_size; extern hci_cmd_t hci_write_authentication_enable; extern hci_cmd_t hci_write_page_timeout; +extern hci_cmd_t hci_remote_name_request; +extern hci_cmd_t hci_remote_name_request_cancel; extern hci_cmd_t hci_read_bd_addr;