added hci_read_local_supported_commands

This commit is contained in:
Matthias Ringwald 2015-06-10 22:30:32 +02:00
parent ba492b5cde
commit a70cff6b3b
2 changed files with 4 additions and 0 deletions

View File

@ -816,6 +816,7 @@ extern const hci_cmd_t hci_read_le_host_supported;
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_read_local_version_information;
extern const hci_cmd_t hci_read_local_supported_commands;
extern const hci_cmd_t hci_read_local_supported_features;
extern const hci_cmd_t hci_read_num_broadcast_retransmissions;
extern const hci_cmd_t hci_read_remote_supported_features_command;

View File

@ -694,6 +694,9 @@ OPCODE(OGF_CONTROLLER_BASEBAND, 0x6d), "11"
const hci_cmd_t hci_read_local_version_information = {
OPCODE(OGF_INFORMATIONAL_PARAMETERS, 0x01), ""
};
const hci_cmd_t hci_read_local_supported_commands = {
OPCODE(OGF_INFORMATIONAL_PARAMETERS, 0x02), ""
};
const hci_cmd_t hci_read_local_supported_features = {
OPCODE(OGF_INFORMATIONAL_PARAMETERS, 0x03), ""
};