From 5d54356a25d851696b7210ddda406a6a1ee40c79 Mon Sep 17 00:00:00 2001 From: Hadinger Date: Wed, 26 Feb 2020 21:43:46 +0100 Subject: [PATCH] Remove code with no effect --- tasmota/support_wifi.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/support_wifi.ino b/tasmota/support_wifi.ino index c98bdc226..f4e88a49d 100644 --- a/tasmota/support_wifi.ino +++ b/tasmota/support_wifi.ino @@ -683,11 +683,11 @@ void WifiShutdown(bool option = false) // Enable from 6.0.0a until 6.1.0a - disabled due to possible cause of bad wifi connect on core 2.3.0 // Re-enabled from 6.3.0.7 with ESP.restart replaced by ESP.reset // Courtesy of EspEasy - WiFi.persistent(true); // use SDK storage of SSID/WPA parameters + // WiFi.persistent(true); // use SDK storage of SSID/WPA parameters ETS_UART_INTR_DISABLE(); wifi_station_disconnect(); // this will store empty ssid/wpa into sdk storage ETS_UART_INTR_ENABLE(); - WiFi.persistent(false); // Do not use SDK storage of SSID/WPA parameters + // WiFi.persistent(false); // Do not use SDK storage of SSID/WPA parameters } delay(100); // Flush anything in the network buffers. }