From a473a5a47c4f65b6568a1650ec9e20c1072c14e9 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 4 Mar 2022 17:22:27 -0800 Subject: bthost: Add support for BT_H4_ISO_PKT This adds sending and receiving BT_H4_ISO_PKT packets. --- monitor/bt.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'monitor/bt.h') diff --git a/monitor/bt.h b/monitor/bt.h index 6ce6384a4..704c70fba 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -499,11 +499,13 @@ struct bt_hci_sco_hdr { struct bt_hci_iso_hdr { uint16_t handle; uint16_t dlen; + uint8_t data[]; } __attribute__ ((packed)); struct bt_hci_iso_data_start { uint16_t sn; uint16_t slen; + uint8_t data[]; } __attribute__ ((packed)); struct bt_hci_evt_hdr { -- cgit v1.2.1