From 0a13fb5602fb36a5936fedda3bbc210613895ce3 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 31 Oct 2012 18:41:57 -0700 Subject: [PATCH] monitor: Add data structure for advertising channel TX power --- monitor/bt.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index b4e07bd8c..2a68d4cef 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -416,6 +416,12 @@ struct bt_hci_rsp_le_read_local_features { uint8_t features[8]; } __attribute__ ((packed)); +#define BT_HCI_CMD_LE_READ_ADV_TX_POWER 0x2007 +struct bt_hci_rsp_le_read_adv_tx_power { + uint8_t status; + int8_t level; +} __attribute__ ((packed)); + #define BT_HCI_CMD_LE_SET_SCAN_PARAMETERS 0x200b struct bt_hci_cmd_le_set_scan_parameters { uint8_t type; -- 2.47.3