diff --git a/monitor/bt.h b/monitor/bt.h
index 8276b17..3a6735b 100644
--- a/monitor/bt.h
+++ b/monitor/bt.h
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];
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;