From 3c2f37ef2f6bff1e53c517c59660966d2cac0fc1 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 14 Jan 2015 21:39:40 -0800 Subject: [PATCH] monitor: Add definitions for erroneous data reporting commands --- monitor/bt.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index feddca89e..f6e898928 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -1271,6 +1271,17 @@ struct bt_hci_cmd_write_inquiry_tx_power { int8_t level; } __attribute__ ((packed)); +#define BT_HCI_CMD_READ_ERRONEOUS_REPORTING 0x0c5a +struct bt_hci_rsp_read_erroneous_reporting { + uint8_t status; + uint8_t mode; +} __attribute__ ((packed)); + +#define BT_HCI_CMD_WRITE_ERRONEOUS_REPORTING 0x0c5b +struct bt_hci_cmd_write_erroneous_reporting { + uint8_t mode; +} __attribute__ ((packed)); + #define BT_HCI_CMD_ENHANCED_FLUSH 0x0c5f struct bt_hci_cmd_enhanced_flush { uint16_t handle; -- 2.47.3