From 809a1ff74cdb41e140674040e852d0af59785d85 Mon Sep 17 00:00:00 2001 From: baohongde Date: Fri, 4 Dec 2020 10:56:58 +0800 Subject: [PATCH] components/coex: Some bugfix about ble dynamic prio Rewrite ble dynamic prio to fix ble disconn in conn_param_update/channel_map_update Rewrite ble dynamic prio in connection establishment Fix ble dynamic prio with latency Fix status bit set error when conn fail --- components/esp32/include/esp_coexist.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/components/esp32/include/esp_coexist.h b/components/esp32/include/esp_coexist.h index 6def75c571..39bdefdc52 100644 --- a/components/esp32/include/esp_coexist.h +++ b/components/esp32/include/esp_coexist.h @@ -84,21 +84,6 @@ esp_err_t esp_coex_status_bit_set(esp_coex_status_type_t type, uint32_t status); */ esp_err_t esp_coex_status_bit_clear(esp_coex_status_type_t type, uint32_t status); -/** - * @brief Enable BLE connection dynamic priority - * @attention If the parameter is true, BLE connection performance will be better but WiFi performance - * will be poorer. And vice versa. - * @param low_interval : true - Increase BLE connection priority to be higher than WiFi's when BLE - * connection interval is less or equal than 50 ms. The default value - * is false. - * false - not increace - * @param high_interval : true - Increase BLE connection priority to be higher than WiFi's when BLE - * connection interval is more than 50 ms. The default value is true. - * false - not increace - * @return : ESP_OK - success, other - failed - */ -esp_err_t esp_coex_ble_conn_dynamic_prio_enable(bool low_interval, bool high_interval); - #ifdef __cplusplus } #endif