mirror of
https://github.com/Laxilef/OTGateway.git
synced 2025-12-15 20:54:29 +05:00
fix: memory leak on esp32 fixed
This commit is contained in:
@@ -181,7 +181,12 @@ namespace Network {
|
|||||||
wifi_station_dhcpc_set_maxtry(5);
|
wifi_station_dhcpc_set_maxtry(5);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ARDUINO_ARCH_ESP32
|
||||||
|
// Nothing. Because memory leaks when turn off WiFi on ESP32, bug?
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
return WiFi.mode(WIFI_OFF);
|
return WiFi.mode(WIFI_OFF);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void reconnect() {
|
void reconnect() {
|
||||||
|
|||||||
Reference in New Issue
Block a user