From 6899322b68e546b545ce3f6db1c569c64a90fdd7 Mon Sep 17 00:00:00 2001 From: Yao Xiao Date: Sat, 22 Oct 2022 11:13:33 +0800 Subject: [PATCH] monitor: Ellisys: Add iso packet support Ellisys Bluetooth Analyzer Injection API Services.pdf HCI Packet Type Object Value HCI Packet Type 0x05 HCI ISO Data (host to controller) 0x85 HCI ISO Data (controller to host) --- monitor/ellisys.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/monitor/ellisys.c b/monitor/ellisys.c index 61ac24c23..56d280e9b 100644 --- a/monitor/ellisys.c +++ b/monitor/ellisys.c @@ -131,6 +131,12 @@ void ellisys_inject_hci(struct timeval *tv, uint16_t index, uint16_t opcode, case BTSNOOP_OPCODE_SCO_RX_PKT: msg[20] = 0x83; break; + case BTSNOOP_OPCODE_ISO_TX_PKT: + msg[20] = 0x05; + break; + case BTSNOOP_OPCODE_ISO_RX_PKT: + msg[20] = 0x85; + break; default: return; } -- 2.47.3