The tittle pretty much summarize my issues. I am curios to know if this is a known or normal issue.
I am using Platformio IDE and it's development branch, which gets updates pretty much everyday.
Code: Select all
[env:esp32doit-devkit-v1]
platform = https://github.com/platformio/platform-espressif32.git
On the contrary, using a phone takes under 5 seconds.
The code for setting up the AP is pretty straight forward.
Code: Select all
//------------------------- logOutput(String)
void logOutput(String string1) {
circle.push(string1);
Serial.println(string1);
}
logOutput((String)"Starting AP ... ");
logOutput(WiFi.softAP(ssidAP, passwordAP) ? "Ready" : "WiFi.softAP failed ! (Password must be at least 8 characters long )");
delay(500);
logOutput((String)"Setting AP configuration ... ");
logOutput(WiFi.softAPConfig(local_IP_AP, local_IP_AP, subnetAP) ? "Ready" : "Failed!");
delay(500);
logOutput((String)"Soft-AP IP address: ");
logOutput(WiFi.softAPIP().toString());
I have a github issue opened as well: https://github.com/espressif/arduino-esp32/issues/2910
But that didn't get me much resolve. That is why I decided to open a thread here as well. Maybe I will get some info out of this.
I would love to hear some of your thoughts on this.
Thank you !