From b147291649af5595279d50dab1c33fca13f7c6dc Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 27 Aug 2013 18:56:32 -0700 Subject: [PATCH] monitor: Add structure for writing inquiry tx power level --- monitor/bt.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index 298d29c18..865f032ff 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -757,6 +757,11 @@ struct bt_hci_rsp_read_inquiry_resp_tx_power { int8_t level; } __attribute__ ((packed)); +#define BT_HCI_CMD_WRITE_INQUIRY_TX_POWER 0x0c59 +struct bt_hci_cmd_write_inquiry_tx_power { + int8_t level; +} __attribute__ ((packed)); + #define BT_HCI_CMD_ENHANCED_FLUSH 0x0c5f struct bt_hci_cmd_enhanced_flush { uint16_t handle; -- 2.47.3