Skip to content

Commit

Permalink
nimble/ll: make includes config dependent
Browse files Browse the repository at this point in the history
The call to ble_ll_isoal_reset() is behind define, but include was
not. Same for iso_big.
  • Loading branch information
bvdberg authored and andrzej-kaczmarek committed Nov 27, 2024
1 parent bc190e4 commit 0a605c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions nimble/controller/src/ble_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0a605c9

Please sign in to comment.