mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-19 16:21:06 +00:00
added hci_reject_connection_request
This commit is contained in:
parent
17f1ba2aa0
commit
c0c1ea3d67
@ -268,6 +268,7 @@ extern const hci_cmd_t hci_read_bd_addr;
|
||||
extern const hci_cmd_t hci_read_buffer_size;
|
||||
extern const hci_cmd_t hci_read_link_policy_settings;
|
||||
extern const hci_cmd_t hci_read_link_supervision_timeout;
|
||||
extern const hci_cmd_t hci_reject_connection_request;
|
||||
extern const hci_cmd_t hci_remote_name_request;
|
||||
extern const hci_cmd_t hci_remote_name_request_cancel;
|
||||
extern const hci_cmd_t hci_reset;
|
||||
|
@ -188,6 +188,10 @@ const hci_cmd_t hci_accept_connection_request = {
|
||||
OPCODE(OGF_LINK_CONTROL, 0x09), "B1"
|
||||
// BD_ADDR, Role: become master, stay slave
|
||||
};
|
||||
const hci_cmd_t hci_reject_connection_request = {
|
||||
OPCODE(OGF_LINK_CONTROL, 0x0a), "B1"
|
||||
// BD_ADDR, reason e.g. CONNECTION REJECTED DUE TO LIMITED RESOURCES (0x0d)
|
||||
};
|
||||
const hci_cmd_t hci_link_key_request_reply = {
|
||||
OPCODE(OGF_LINK_CONTROL, 0x0b), "BP"
|
||||
// BD_ADDR, LINK_KEY
|
||||
|
Loading…
x
Reference in New Issue
Block a user