This is an automated email from the ASF dual-hosted git repository.
andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
The following commit(s) were added to refs/heads/master by this push:
new 5506aebe5 nimble/ll: Fix update chanmap in BIGInfo
5506aebe5 is described below
commit 5506aebe58517cfa824d66f97f3ae683a510248b
Author: Andrzej Kaczmarek <[email protected]>
AuthorDate: Mon Feb 17 17:57:09 2025 +0100
nimble/ll: Fix update chanmap in BIGInfo
This fix merged in 890be280a3 was broken during rebase.
---
nimble/controller/src/ble_ll_iso_big.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nimble/controller/src/ble_ll_iso_big.c
b/nimble/controller/src/ble_ll_iso_big.c
index 1b4e50d36..2b84e9807 100644
--- a/nimble/controller/src/ble_ll_iso_big.c
+++ b/nimble/controller/src/ble_ll_iso_big.c
@@ -307,8 +307,8 @@ ble_ll_iso_big_biginfo_calc(struct ble_ll_iso_big *big,
uint32_t seed_aa)
buf += 2;
/* chm, phy */
- memcpy(buf, big->chan_map, 5);
ble_ll_iso_big_biginfo_chanmap_update(big);
+ buf += 5;
/* bis_payload_cnt, framing */
memset(buf, 0x00, 5);