Skip to content

Commit b33ccbf

Browse files
cvinayakaescolar
authored andcommitted
Bluetooth: controller: split: Fix directed adv event interval
Fix the directed advertising event interval calculation. When CONFIG_BT_CTLR_LOW_LAT is used then prepare duration has to be included in the event slot reservation. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 09ac888 commit b33ccbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/controller/ll_sw/ull_adv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ u8_t ll_adv_enable(u8_t enable)
823823
TICKER_USER_ID_THREAD,
824824
(TICKER_ID_ADV_BASE + handle),
825825
ticks_anchor, 0,
826-
adv->evt.ticks_slot,
826+
(adv->evt.ticks_slot + ticks_slot_overhead),
827827
TICKER_NULL_REMAINDER, TICKER_NULL_LAZY,
828828
(adv->evt.ticks_slot + ticks_slot_overhead),
829829
ticker_cb, adv,

0 commit comments

Comments
 (0)