fix: memory leak on esp32 fixed

This commit is contained in:
Yurii
2024-04-06 20:28:05 +03:00
parent 86734ab622
commit ab1566bd45

View File

@@ -181,7 +181,12 @@ namespace Network {
wifi_station_dhcpc_set_maxtry(5);
#endif
#ifdef ARDUINO_ARCH_ESP32
// Nothing. Because memory leaks when turn off WiFi on ESP32, bug?
return true;
#else
return WiFi.mode(WIFI_OFF);
#endif
}
void reconnect() {