From 0d6476248aaa19e4b7a3cddc5a7e8831c3e72133 Mon Sep 17 00:00:00 2001 From: Vinayak Kariappa Chettimada Date: Mon, 4 May 2020 18:10:54 +0530 Subject: [PATCH] Bluetooth: controller: split: Fix auxiliary channel scan window width Fix the calculation of auxiliary channel scan window width. Signed-off-by: Vinayak Kariappa Chettimada --- subsys/bluetooth/controller/ll_sw/ull_scan_aux.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/subsys/bluetooth/controller/ll_sw/ull_scan_aux.c b/subsys/bluetooth/controller/ll_sw/ull_scan_aux.c index 9f89d0ce653..e7dbd8e3b9c 100644 --- a/subsys/bluetooth/controller/ll_sw/ull_scan_aux.c +++ b/subsys/bluetooth/controller/ll_sw/ull_scan_aux.c @@ -176,8 +176,7 @@ void ull_scan_aux_setup(memq_link_t *link, struct node_rx_hdr *rx, uint8_t phy) } lll->window_size_us += (EVENT_TICKER_RES_MARGIN_US + - (EVENT_JITTER_US << 1) + - window_widening_us); + ((EVENT_JITTER_US + window_widening_us) << 1)); ready_delay_us = lll_radio_rx_ready_delay_get(lll->phy, 1);