From 382299a8284be3a06cc1fb4f38f3eb37a94a7ec1 Mon Sep 17 00:00:00 2001 From: Rick Watson Date: Fri, 7 Jun 2019 20:14:55 +0100 Subject: [PATCH] WiFi driver must be managed by arduino, use arduino to init the driver for esp32 core. --- src/main.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 9d90008..1aa3266 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -44,14 +44,11 @@ void setup() { // Disable wifi config persistance and auto reconnect WiFi.persistent(false); WiFi.setAutoReconnect(false); - + #if defined(ESP_PLATFORM) // Init the wifi driver on ESP32 - wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); - esp_err_t err = esp_wifi_init(&cfg); - if(err){ - log_e("esp_wifi_init %d", err); - } + WiFi.mode(WIFI_MODE_MAX); + WiFi.mode(WIFI_MODE_NULL); #endif Serial.begin(SERIAL_BAUD_RATE);