mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-09-07 09:40:07 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user