Skip to content

Commit

Permalink
esp_peripherals: Check if blufi enabled around call to ble_config_sta…
Browse files Browse the repository at this point in the history
…rt or ble_config_stop
  • Loading branch information
ftab committed Jul 24, 2023
1 parent 49e63cd commit d4ec0d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/esp_peripherals/periph_wifi.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ esp_err_t periph_wifi_wait_for_connected(esp_periph_handle_t periph, TickType_t
if (connected_bit & CONNECTED_BIT) {
return ESP_OK;
}
#if defined(CONFIG_BTDM_CTRL_MODE_BLE_ONLY) || defined(CONFIG_BTDM_CTRL_MODE_BTDM)
#if defined(CONFIG_BT_BLE_BLUFI_ENABLE)
if (periph_wifi->config_mode == WIFI_CONFIG_BLUEFI) {
ble_config_stop();
}
Expand Down Expand Up @@ -256,7 +256,7 @@ esp_err_t periph_wifi_config_start(esp_periph_handle_t periph, periph_wifi_confi
//todo : add wps
return ESP_OK;
} else if (mode == WIFI_CONFIG_BLUEFI) {
#if defined(CONFIG_BTDM_CTRL_MODE_BLE_ONLY) || defined(CONFIG_BTDM_CTRL_MODE_BTDM)
#if defined(CONFIG_BT_BLE_BLUFI_ENABLE)
ble_config_start(periph);
#endif
return ESP_OK;
Expand Down

0 comments on commit d4ec0d8

Please sign in to comment.