From: Jefferson Delfes <jefferson.delfes@xxxxxxxxxxxxx> Add structure for new command: Set Controller Data. Add new defines for flags that will be used in Set Controller Data operation. --- lib/mgmt.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/mgmt.h b/lib/mgmt.h index a2648bc..99243b1 100644 --- a/lib/mgmt.h +++ b/lib/mgmt.h @@ -318,6 +318,17 @@ struct mgmt_cp_set_device_id { uint16_t version; } __packed; +#define MGMT_DATA_NORMAL_PRIORITY 0x00 +#define MGMT_DATA_HIGH_PRIORITY 0x01 + +#define MGMT_OP_SET_CONTROLLER_DATA 0x0029 +struct mgmt_cp_set_controller_data { + uint8_t flags; + uint8_t data_type; + uint8_t data_length; + uint8_t data[0]; +} __packed; + #define MGMT_EV_CMD_COMPLETE 0x0001 struct mgmt_ev_cmd_complete { uint16_t opcode; @@ -489,6 +500,7 @@ static const char *mgmt_op[] = { "Block Device", "Unblock Device", "Set Device ID", + "Set Controller Data", }; static const char *mgmt_ev[] = { -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html