From 02ee85c89321081e172e4966bcbf6e531ecac8bb Mon Sep 17 00:00:00 2001 From: Vinayak Kariappa Chettimada Date: Mon, 12 Dec 2022 13:19:46 +0530 Subject: [PATCH] Bluetooth: Controller: FIXME comment for chain PDU time reservation Add FIXME comments to handle additional time reservations required for advertising auxiliary channel chain PDUs. Signed-off-by: Vinayak Kariappa Chettimada --- subsys/bluetooth/controller/ll_sw/ull_adv_aux.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/subsys/bluetooth/controller/ll_sw/ull_adv_aux.c b/subsys/bluetooth/controller/ll_sw/ull_adv_aux.c index 93f1f71cb40..16fac8c39aa 100644 --- a/subsys/bluetooth/controller/ll_sw/ull_adv_aux.c +++ b/subsys/bluetooth/controller/ll_sw/ull_adv_aux.c @@ -2911,6 +2911,16 @@ static uint32_t aux_time_get(struct ll_adv_aux_set *aux, struct pdu_adv *pdu, PDU_AC_US(pdu_scan->len, lll->phy_s, lll->phy_flags); time_us += EVENT_IFS_MAX_US * 2 + scan_req_us + scan_rsp_us; + + /* FIXME: Calculate additional time reservations for scan + * response chain PDUs, if any. + */ + } else { + /* Non-connectable Non-Scannable */ + + /* FIXME: Calculate additional time reservations for chain PDUs, + * if any. + */ } return time_us;