Skip to content

Commit 3075ba9

Browse files
cvinayakcfriedt
authored andcommitted
Bluetooth: Controller: Add FIXME for Per Adv chain channel use
Add FIXME comments for missing use of channel selection algorithm for Periodic Advertising chained PDUs. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent ec784fd commit 3075ba9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

subsys/bluetooth/controller/ll_sw/nordic/lll/lll_adv_sync.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ static void isr_tx(void *param)
334334
lll_sync = param;
335335
lll = lll_sync->adv;
336336

337-
/* TODO: do not hardcode to single value */
337+
/* FIXME: Use implementation defined channel index */
338338
lll_chan_set(0);
339339

340340
pdu = lll_adv_pdu_linked_next_get(lll_sync->last_pdu);
@@ -393,6 +393,7 @@ static void isr_tx(void *param)
393393
static void pdu_b2b_update(struct lll_adv_sync *lll, struct pdu_adv *pdu, uint32_t cte_len_us)
394394
{
395395
while (pdu) {
396+
/* FIXME: Use implementation defined channel index */
396397
pdu_b2b_aux_ptr_update(pdu, lll->adv->phy_s, lll->adv->phy_flags, 0,
397398
ADV_SYNC_PDU_B2B_AFS, cte_len_us);
398399
pdu = lll_adv_pdu_linked_next_get(pdu);

0 commit comments

Comments
 (0)