hci_cmd: add hci_write_current_iac_lap_two_iacs

This commit is contained in:
Milanka Ringwald 2018-09-24 11:49:09 +02:00
parent 8aee7be2bb
commit 9119d792f4
2 changed files with 13 additions and 1 deletions

View File

@ -559,6 +559,7 @@ const hci_cmd_t hci_write_default_link_policy_setup = {
* Controller & Baseband Commands
*/
/**
* @param event_mask_lover_octets
* @param event_mask_higher_octets
@ -670,6 +671,7 @@ const hci_cmd_t hci_host_buffer_size = {
OPCODE(OGF_CONTROLLER_BASEBAND, 0x33), "2122"
};
#if 0
//
// command sent manually sent by hci_host_num_completed_packets
@ -702,6 +704,15 @@ const hci_cmd_t hci_write_link_supervision_timeout = {
OPCODE(OGF_CONTROLLER_BASEBAND, 0x37), "H2"
};
/**
* @param num_current_iac must be 2
* @param iac_lap1
* @param iac_lap2
*/
const hci_cmd_t hci_write_current_iac_lap_two_iacs = {
OPCODE(OGF_CONTROLLER_BASEBAND, 0x3A), "133"
};
/**
* @param inquiry_mode (0x00 = standard, 0x01 = with RSSI, 0x02 = extended)
*/

View File

@ -143,12 +143,13 @@ extern const hci_cmd_t hci_user_passkey_request_negative_reply;
extern const hci_cmd_t hci_user_passkey_request_reply;
extern const hci_cmd_t hci_write_authentication_enable;
extern const hci_cmd_t hci_write_class_of_device;
extern const hci_cmd_t hci_write_current_iac_lap_two_iacs;
extern const hci_cmd_t hci_write_default_erroneous_data_reporting;
extern const hci_cmd_t hci_write_default_link_policy_setup;
extern const hci_cmd_t hci_write_extended_inquiry_response;
extern const hci_cmd_t hci_write_inquiry_mode;
extern const hci_cmd_t hci_write_le_host_supported;
extern const hci_cmd_t hci_write_link_policy_settings;
extern const hci_cmd_t hci_write_default_link_policy_setup;
extern const hci_cmd_t hci_write_link_supervision_timeout;
extern const hci_cmd_t hci_write_local_name;
extern const hci_cmd_t hci_write_loopback_mode;