mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-29 22:20:37 +00:00
hci_cmd: add hci_read_remote_extended_features_command
This commit is contained in:
parent
3cdbe9dbd5
commit
d505770669
@ -452,6 +452,8 @@ typedef uint8_t sm_key_t[16];
|
||||
*/
|
||||
#define HCI_EVENT_INQUIRY_RESULT_WITH_RSSI 0x22
|
||||
|
||||
#define HCI_EVENT_READ_REMOTE_EXTENDED_FEATURES_COMPLETE 0x23
|
||||
|
||||
/**
|
||||
* @format 1HB111221
|
||||
* @param status
|
||||
|
@ -324,6 +324,13 @@ const hci_cmd_t hci_read_remote_supported_features_command = {
|
||||
OPCODE(OGF_LINK_CONTROL, 0x1B), "H"
|
||||
};
|
||||
|
||||
/**
|
||||
* @param handle
|
||||
*/
|
||||
const hci_cmd_t hci_read_remote_extended_features_command = {
|
||||
OPCODE(OGF_LINK_CONTROL, 0x1C), "H1"
|
||||
};
|
||||
|
||||
/**
|
||||
* @param handle
|
||||
*/
|
||||
|
@ -129,6 +129,7 @@ extern const hci_cmd_t hci_read_local_version_information;
|
||||
extern const hci_cmd_t hci_read_loopback_mode;
|
||||
extern const hci_cmd_t hci_read_num_broadcast_retransmissions;
|
||||
extern const hci_cmd_t hci_read_remote_supported_features_command;
|
||||
extern const hci_cmd_t hci_read_remote_extended_features_command;
|
||||
extern const hci_cmd_t hci_read_remote_version_information;
|
||||
extern const hci_cmd_t hci_read_transmit_power_level;
|
||||
extern const hci_cmd_t hci_read_rssi;
|
||||
|
Loading…
x
Reference in New Issue
Block a user