Diff between 278d6a47621bc794cb5644a774db3868f31ce068 and 089d38aa78c2816405a28517bd98a41c75d1da0d

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 fde7aad..8e6379f 100644
--- a/monitor/bt.h
+++ b/monitor/bt.h
@@ -1331,6 +1331,19 @@ struct bt_hci_cmd_write_flow_control_mode {
 	uint8_t  mode;
 } __attribute__ ((packed));
 
+#define BT_HCI_CMD_READ_ENHANCED_TX_POWER	0x0c68
+struct bt_hci_cmd_read_enhanced_tx_power {
+	uint16_t handle;
+	uint8_t  type;
+} __attribute__ ((packed));
+struct bt_hci_rsp_read_enhanced_tx_power {
+	uint8_t  status;
+	uint16_t handle;
+	int8_t   level_gfsk;
+	int8_t   level_dqpsk;
+	int8_t   level_8dpsk;
+} __attribute__ ((packed));
+
 #define BT_HCI_CMD_READ_LE_HOST_SUPPORTED	0x0c6c
 struct bt_hci_rsp_read_le_host_supported {
 	uint8_t  status;