diff --git a/include/btstack/hci_cmds.h b/include/btstack/hci_cmds.h index c36f7f105..04b3649ff 100644 --- a/include/btstack/hci_cmds.h +++ b/include/btstack/hci_cmds.h @@ -815,6 +815,7 @@ extern const hci_cmd_t hci_read_buffer_size; 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_features; extern const hci_cmd_t hci_read_num_broadcast_retransmissions; extern const hci_cmd_t hci_read_remote_supported_features_command; diff --git a/src/hci_cmds.c b/src/hci_cmds.c index 05b607220..629f2251e 100644 --- a/src/hci_cmds.c +++ b/src/hci_cmds.c @@ -689,6 +689,9 @@ OPCODE(OGF_CONTROLLER_BASEBAND, 0x6d), "11" * Informational Parameters */ +const hci_cmd_t hci_read_local_version_information = { +OPCODE(OGF_INFORMATIONAL_PARAMETERS, 0x01), "" +}; const hci_cmd_t hci_read_local_supported_features = { OPCODE(OGF_INFORMATIONAL_PARAMETERS, 0x03), "" };