Message ID | 20241114192524.1856334-4-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 0580dc4bb64f143da3897f78f7734fbd0f64df1b |
Headers | show |
Series | [BlueZ,v2,1/5] mgmt-api: Add Send HCI command and wait for event Command | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
diff --git a/lib/mgmt.h b/lib/mgmt.h index 8f92b77315e3..f784dcada191 100644 --- a/lib/mgmt.h +++ b/lib/mgmt.h @@ -797,7 +797,16 @@ struct mgmt_cp_mesh_send { #define MGMT_OP_MESH_SEND_CANCEL 0x005A struct mgmt_cp_mesh_send_cancel { - uint8_t handle; + uint8_t handle; +} __packed; + +#define MGMT_OP_HCI_CMD_SYNC 0x005B +struct mgmt_cp_hci_cmd_sync { + uint16_t opcode; + uint8_t event; + uint8_t timeout; + uint16_t params_len; + uint8_t params[]; } __packed; #define MGMT_EV_CMD_COMPLETE 0x0001
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This adds the definition of MGMT_OP_HCI_CMD_SYNC and its packet structure. --- lib/mgmt.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-)