From ffe52da2f0b419caf9fb60bfb47b542a28c748c4 Mon Sep 17 00:00:00 2001 From: Lars Segerlund Date: Wed, 7 May 2025 09:02:46 +0200 Subject: [PATCH] bluetooth: Controller: Set sdu_max fixing ISO test mode sdu_max For ISO test mode sdu_max to work it actually has to be set somewhere and this does that. Signed-off-by: Lars Segerlund --- subsys/bluetooth/controller/ll_sw/ull_sync_iso.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/bluetooth/controller/ll_sw/ull_sync_iso.c b/subsys/bluetooth/controller/ll_sw/ull_sync_iso.c index 816bd18fcc2..756abaa6141 100644 --- a/subsys/bluetooth/controller/ll_sw/ull_sync_iso.c +++ b/subsys/bluetooth/controller/ll_sw/ull_sync_iso.c @@ -506,6 +506,7 @@ void ull_sync_iso_setup(struct ll_sync_iso_set *sync_iso, lll->ptc = 0U; } lll->sdu_interval = PDU_BIG_INFO_SDU_INTERVAL_GET(bi); + lll->max_sdu = PDU_BIG_INFO_MAX_SDU_GET(bi); /* Pick the 39-bit payload count, 1 MSb is framing bit */ lll->payload_count = (uint64_t)bi->payload_count_framing[0];