From a4f9c3201db59543cd844ed45ce5ec0a83f5b364 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 27 Aug 2013 14:55:52 -0700 Subject: [PATCH] monitor: Add structures for HCI channel map command --- monitor/bt.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index 4229643eb..c9a2d7966 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -864,6 +864,17 @@ struct bt_hci_rsp_read_rssi { int8_t rssi; } __attribute__ ((packed)); +#define BT_HCI_CMD_READ_AFH_CHANNEL_MAP 0x1406 +struct bt_hci_cmd_read_afh_channel_map { + uint16_t handle; +} __attribute__ ((packed)); +struct bt_hci_rsp_read_afh_channel_map { + uint8_t status; + uint16_t handle; + uint8_t mode; + uint8_t map[10]; +} __attribute__ ((packed)); + #define BT_HCI_CMD_READ_CLOCK 0x1407 struct bt_hci_cmd_read_clock { uint16_t handle; -- 2.47.3