Diff between e4d00337ade58d8bde6e569ad5ecafbad8730f72 and bac09a9dbbeef9a5e1df5a06644107b0a5e6c65d

Changed Files

File Additions Deletions Status
monitor/bt.h +13 -0 modified

Full Patch

diff --git a/monitor/bt.h b/monitor/bt.h
index 8276b17..3a6735b 100644
--- a/monitor/bt.h
+++ b/monitor/bt.h
@@ -89,6 +89,12 @@ struct bt_hci_cmd_reject_conn_request {
 	uint8_t  reason;
 } __attribute__ ((packed));
 
+#define BT_HCI_CMD_CHANGE_CONN_PKT_TYPE		0x040f
+struct bt_hci_cmd_change_conn_pkt_type {
+	uint16_t handle;
+	uint16_t pkt_type;
+} __attribute__ ((packed));
+
 #define BT_HCI_CMD_REMOTE_NAME_REQUEST		0x0419
 struct bt_hci_cmd_remote_name_request {
 	uint8_t  bdaddr[6];
@@ -498,6 +504,13 @@ struct bt_hci_evt_num_completed_packets {
 	uint16_t count;
 } __attribute__ ((packed));
 
+#define BT_HCI_EVT_CONN_PKT_TYPE_CHANGED	0x1d
+struct bt_hci_evt_conn_pkt_type_changed {
+	uint8_t  status;
+	uint16_t handle;
+	uint16_t pkt_type;
+} __attribute__ ((packed));
+
 #define BT_HCI_EVT_INQUIRY_RESULT_WITH_RSSI	0x22
 struct bt_hci_evt_inquiry_result_with_rssi {
 	uint8_t  num_resp;