From: Marcel Holtmann Date: Mon, 7 Oct 2013 11:39:14 +0000 (-0700) Subject: Bluetooth: Add definitions for flow control mode commands X-Git-Tag: android-x86-4.4-r3~7492 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=65361a6305074e6820d18bfb8246ba1ccd9a1e48;p=android-x86%2Fexternal-bluetooth-bluez.git Bluetooth: Add definitions for flow control mode commands --- diff --git a/monitor/bt.h b/monitor/bt.h index 3f32fbd8c..25a1c8d6a 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -873,6 +873,17 @@ struct bt_hci_cmd_set_event_mask_page2 { uint8_t mask[8]; } __attribute__ ((packed)); +#define BT_HCI_CMD_READ_FLOW_CONTROL_MODE 0x0c66 +struct bt_hci_rsp_read_flow_control_mode { + uint8_t status; + uint8_t mode; +} __attribute__ ((packed)); + +#define BT_HCI_CMD_WRITE_FLOW_CONROL_MODE 0x0c67 +struct bt_hci_cmd_write_flow_control_mode { + uint8_t mode; +} __attribute__ ((packed)); + #define BT_HCI_CMD_READ_LE_HOST_SUPPORTED 0x0c6c struct bt_hci_rsp_read_le_host_supported { uint8_t status;