hci_cmd: add hci_read_remote_extended_features_command

This commit is contained in:
Matthias Ringwald 2020-05-18 16:57:14 +02:00
parent 3cdbe9dbd5
commit d505770669
3 changed files with 10 additions and 0 deletions

View File

@ -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

View File

@ -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
*/

View File

@ -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;