Diff between 14d8c3cc9412950d430576225eb5bab2f0fd68d7 and 03e345f613da843c952c6b01ab63d99d5846dbfe

Changed Files

File Additions Deletions Status
android/hal-msg.h +67 -0 modified

Full Patch

diff --git a/android/hal-msg.h b/android/hal-msg.h
index 6266903..9dcfbf6 100644
--- a/android/hal-msg.h
+++ b/android/hal-msg.h
@@ -179,6 +179,73 @@ struct hal_msg_cmd_bt_le_test_mode {
 	uint8_t  data[0];
 } __attribute__((packed));
 
+#define HAL_MSG_OP_BT_HID_CONNECT	0x01
+struct hal_msg_cmd_bt_hid_connect {
+	uint8_t bdaddr[6];
+} __attribute__((packed));
+
+#define HAL_MSG_OP_BT_HID_DISCONNECT	0x02
+struct hal_msg_cmd_bt_hid_disconnect {
+	uint8_t bdaddr[6];
+} __attribute__((packed));
+
+#define HAL_MSG_OP_BT_HID_VP		0x03
+struct hal_msg_cmd_bt_hid_vp {
+	uint8_t bdaddr[6];
+} __attribute__((packed));
+
+#define HAL_MSG_OP_BT_HID_SET_INFO	0x04
+struct hal_msg_cmd_bt_hid_set_info {
+	uint8_t bdaddr[6];
+	uint8_t attr;
+	uint8_t subclass;
+	uint8_t app_id;
+	uint16_t vendor;
+	uint16_t product;
+	uint16_t country;
+	uint16_t descr_len;
+	uint8_t descr[0];
+} __attribute__((packed));
+
+#define HAL_MSG_BT_HID_REPORT_PROTOCOL		0x00
+#define HAL_MSG_BT_HID_BOOT_PROTOCOL		0x01
+#define HAL_MSG_BT_HID_UNSUPPORTED_PROTOCOL	0xff
+
+#define HAL_MSG_OP_BT_HID_GET_PROTOCOL	0x05
+struct hal_msg_cmd_bt_hid_get_protocol {
+	uint8_t bdaddr[6];
+	uint8_t mode;
+} __attribute__((packed));
+
+#define HAL_MSG_OP_BT_HID_SET_PROTOCOL	0x06
+struct hal_msg_cmd_bt_hid_set_protocol {
+	uint8_t bdaddr[6];
+	uint8_t mode;
+} __attribute__((packed));
+
+#define HAL_MSG_BT_HID_INPUT_REPORT	0x01
+#define HAL_MSG_BT_HID_OUTPUT_REPORT	0x02
+#define HAL_MSG_BT_HID_FEATURE_REPORT	0x03
+
+#define HAL_MSG_OP_BT_HID_GET_REPORT	0x07
+struct hal_msg_cmd_bt_hid_get_report {
+	uint8_t bdaddr[6];
+	uint8_t type;
+	uint8_t id;
+	uint16_t buf;
+} __attribute__((packed));
+
+#define HAL_MSG_OP_BT_HID_SET_REPORT	0x08
+struct hal_msg_cmd_bt_hid_set_report {
+	uint8_t bdaddr[6];
+	uint8_t type;
+} __attribute__((packed));
+
+#define HAL_MSG_OP_BT_HID_SEND_DATA	0x09
+struct hal_msg_cmd_bt_hid_send_data {
+	uint8_t bdaddr[6];
+} __attribute__((packed));
+
 /* Notifications and confirmations */
 
 #define HAL_MSG_EV_BT_ERROR			0x80