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 0a605c942 nimble/ll: make includes config dependent
0a605c942 is described below
commit 0a605c9425fb562a28105fa8e0bd6376de6ef46a
Author: Bas van den Berg <[email protected]>
AuthorDate: Wed Nov 27 08:48:12 2024 +0100
nimble/ll: make includes config dependent
The call to ble_ll_isoal_reset() is behind define, but include was
not. Same for iso_big.
---
nimble/controller/src/ble_ll.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/nimble/controller/src/ble_ll.c b/nimble/controller/src/ble_ll.c
index f2fc37d6d..4e0a74c53 100644
--- a/nimble/controller/src/ble_ll.c
+++ b/nimble/controller/src/ble_ll.c
@@ -46,8 +46,12 @@
#include "controller/ble_ll_trace.h"
#include "controller/ble_ll_sync.h"
#include "controller/ble_fem.h"
+#if MYNEWT_VAL(BLE_LL_ISO)
#include "controller/ble_ll_isoal.h"
+#endif
+#if MYNEWT_VAL(BLE_LL_ISO_BROADCASTER)
#include "controller/ble_ll_iso_big.h"
+#endif
#if MYNEWT_VAL(BLE_LL_EXT)
#include "controller/ble_ll_ext.h"
#endif