You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS: Linux Mint 19.1
Board: ESP32-EVB
IDE: PlatformIO IDE platform = https://github.com/platformio/platform-espressif32.git
Hello !
I am using ESPAsyncWebServer to serve some web-pages and to control the 2 relays that are on the board.
The ESP is configured with a static IP:
if(!WiFi.config(local_IP_STA, gateway_STA, subnet_STA, local_IP_STA, primaryDNS)) {
logOutput((String)"Couldn't configure STATIC IP ! Starting DHCP IP !");
}
delay(50);
WiFi.begin(x[0].c_str(),x[1].c_str());
The issue that I am having is that the ESP freezes randomly with no DEBUG message. I have set the DEBUG level at Verbose: build_flags = -DCORE_DEBUG_LEVEL=5.
Now it works and I can ping at it for hours and then it doesn't.
I am also using the following methods in order to prevent the ESP from freezing, but they don't help at all. With or without them I can't make the project reliable.
enableCore1WDT();
esp_wifi_set_ps (WIFI_PS_NONE);
I get the following browser error:
This site can’t be reached
ERR_ADDRESS_UNREACHABLE
And pinging the ESP ends with Destination Host Unreachable.
The issue I am experiencing makes the ESP a very unreliable board. I don't know if it's the ESP at fault or the Server's Library.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
OS: Linux Mint 19.1
Board: ESP32-EVB
IDE: PlatformIO IDE
platform = https://github.com/platformio/platform-espressif32.git
Hello !
I am using ESPAsyncWebServer to serve some web-pages and to control the 2 relays that are on the board.
The ESP is configured with a static IP:
The issue that I am having is that the ESP freezes randomly with no DEBUG message. I have set the DEBUG level at Verbose:
build_flags = -DCORE_DEBUG_LEVEL=5
.Now it works and I can ping at it for hours and then it doesn't.
I am also using the following methods in order to prevent the ESP from freezing, but they don't help at all. With or without them I can't make the project reliable.
I get the following browser error:
And pinging the ESP ends with
Destination Host Unreachable
.The issue I am experiencing makes the ESP a very unreliable board. I don't know if it's the ESP at fault or the Server's Library.
The
void loop()
is pretty straight forward.The text was updated successfully, but these errors were encountered: