Merge branch 'bugfix/coex_fix_wifi_scan_and_connect_bugs_master' into 'master'

esp_wifi: fix WiFi scan and connect bugs when coexist with Bluetooth

See merge request espressif/esp-idf!6840
pull/4494/head
Jiang Jiang Jian 2019-12-04 14:56:39 +08:00
commit 3a54047c66
3 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -453,6 +453,7 @@ void start_cpu0_default(void)
#if CONFIG_ESP32_WIFI_SW_COEXIST_ENABLE
esp_coex_adapter_register(&g_coex_adapter_funcs);
coex_pre_init();
#endif
portBASE_TYPE res = xTaskCreatePinnedToCore(&main_task, "main",

Wyświetl plik

@ -31,6 +31,14 @@ typedef enum {
typedef void (* coex_func_cb_t)(uint32_t event, int sched_cnt);
/**
* @brief Pre-Init software coexist
* extern function for internal use.
*
* @return Init ok or failed.
*/
esp_err_t coex_pre_init(void);
/**
* @brief Init software coexist
* extern function for internal use.

@ -1 +1 @@
Subproject commit d780a7f4fcf8558d9e310fb11a572298ee3d1295
Subproject commit c74aa6c5bb017a78a3167609549af4fc27e72b16