Просмотр исходного кода

Support for more Bluetooth HID devices

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 <liqigan@espressif.com>

Merges https://github.com/espressif/esp-idf/pull/5481
Closes https://github.com/espressif/esp-idf/issues/5470
DerfJagged 5 лет назад
Родитель
Сommit
d1506fdae0
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      components/bt/host/bluedroid/stack/btm/btm_acl.c

+ 0 - 1
components/bt/host/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];