From c5b23a85b8ce7426dcc866f5f8468287a787a779 Mon Sep 17 00:00:00 2001 From: boblane Date: Fri, 17 Jul 2020 11:12:22 +0800 Subject: [PATCH] Some Bluetooth devices - such as an Xbox One S controller (model 1708) - report more than two external features pages and are rejected immediately. Pages 1 and 2 are marked as unhandled in btm_devctl.c anyway, so there is no reason to block devices with more pages. (IDFGH-3515) Signed-off-by: liqigan Merges https://github.com/espressif/esp-idf/pull/5481 Closes https://github.com/espressif/esp-idf/issues/5470 --- components/bt/bluedroid/stack/btm/btm_acl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/components/bt/bluedroid/stack/btm/btm_acl.c b/components/bt/bluedroid/stack/btm/btm_acl.c index 63bf5f324..0cc0903f3 100644 --- a/components/bt/bluedroid/stack/btm/btm_acl.c +++ b/components/bt/bluedroid/stack/btm/btm_acl.c @@ -1140,7 +1140,6 @@ void btm_read_remote_ext_features_complete (UINT8 *p) if (max_page > HCI_EXT_FEATURES_PAGE_MAX) { BTM_TRACE_ERROR("btm_read_remote_ext_features_complete page=%d unknown", max_page); - return; } p_acl_cb = &btm_cb.acl_db[acl_idx];