diff mbox series

[v2,2/2] btdev: Fix CIS Establish ISO Interval

Message ID 20230621213845.1021997-2-luiz.dentz@gmail.com (mailing list archive)
State Accepted
Commit 2f3479337f14a8e1dbc5ba0d70bf2723bf8b1b0d
Headers show
Series [v2,1/2] monitor: Fix decoding of HCI CIS Established Event | expand

Commit Message

Luiz Augusto von Dentz June 21, 2023, 9:38 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

ISO Interval is actually using 1.25 ms slots so it needs to be properly
converted.
---
 emulator/btdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/emulator/btdev.c b/emulator/btdev.c
index 462f352ea252..0a375febad68 100644
--- a/emulator/btdev.c
+++ b/emulator/btdev.c
@@ -5977,7 +5977,7 @@  static void le_cis_estabilished(struct btdev *dev, struct btdev_conn *conn,
 		evt.p_ft = 0x01;
 		evt.c_mtu = le_cig->cis[cis_idx].c_sdu;
 		evt.p_mtu = le_cig->cis[cis_idx].p_sdu;
-		evt.interval = le_cig->params.c_latency;
+		evt.interval = (le_cig->params.c_latency + 1) / 1.25;
 	}
 
 	le_meta_event(dev, BT_HCI_EVT_LE_CIS_ESTABLISHED, &evt, sizeof(evt));