Merge branch 'change/optimize_sniff_request_v4.3' into 'release/v4.3'

Change(bt/bluedroid): Limit sniff request when pending mode change event[backport 4.3]

See merge request espressif/esp-idf!26056
This commit is contained in:
Wang Meng Yang 2023-09-25 17:53:36 +08:00
commit 435561c9b9

View File

@ -243,7 +243,8 @@ tBTM_STATUS BTM_SetPowerMode (UINT8 pm_id, BD_ADDR remote_bda, tBTM_PM_PWR_MD *p
/* if mode == hold or pending, return */
if ( (p_cb->state == BTM_PM_STS_HOLD) ||
(p_cb->state == BTM_PM_STS_PENDING) ||
(btm_cb.pm_pend_link_hdl != BTM_INVALID_HANDLE) ) { /* command pending */
(btm_cb.pm_pend_link_hdl != BTM_INVALID_HANDLE) ||
(p_cb->state & BTM_PM_STORED_MASK) ) { /* command pending */
if (p_acl_cb->hci_handle != btm_cb.pm_pend_link_hdl) {
/* set the stored mask */
p_cb->state |= BTM_PM_STORED_MASK;