fix(esp_wifi): remove esp_interface.h and update usages

This commit is contained in:
Kapil Gupta
2025-09-09 16:26:56 +05:30
parent a28fefcf73
commit 0f63b92501
11 changed files with 26 additions and 56 deletions

View File

@@ -65,7 +65,7 @@ static void wifi_init_softap(void)
}
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_AP));
ESP_ERROR_CHECK(esp_wifi_set_config(ESP_IF_WIFI_AP, &wifi_config));
ESP_ERROR_CHECK(esp_wifi_set_config(WIFI_IF_AP, &wifi_config));
ESP_ERROR_CHECK(esp_wifi_start());
esp_netif_ip_info_t ip_info;