nimble/ll: Fix concurrent ext adv and scan

After extended advertising event is done we should first try restart
scanner and then check if clocks should be disabled. Otherwise we may
disable clock and then restart scanner so it won't scan too much in
current window...
This commit is contained in:
Andrzej Kaczmarek
2019-11-22 19:21:54 +01:00
parent 833b4a9a85
commit 584ba1b7dc
+3 -3
View File
@@ -4545,14 +4545,14 @@ ble_ll_adv_sec_done(struct ble_ll_adv_sm *advsm)
return;
}
/* Check if we need to resume scanning */
ble_ll_scan_chk_resume();
/* Turn off the clock if not doing anything else */
#ifdef BLE_XCVR_RFCLK
ble_ll_sched_rfclk_chk_restart();
#endif
/* Check if we need to resume scanning */
ble_ll_scan_chk_resume();
/* Check if advertising timed out */
if (advsm->duration && (advsm->adv_pdu_start_time >= advsm->adv_end_time)) {
ble_ll_adv_sm_stop_timeout(advsm);