From 80e82ca78a8b43a692391b6f03e5fd74cbb2cba4 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Thu, 6 Aug 2026 17:55:00 -0400 Subject: [PATCH] Revert "fix(net): restore WiFi.persistent(false) so cold connect does not hang" This reverts commit 58cf7395b9b350b44ced48464029641f00b8b9e4. --- src/net.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 12f7152..caed011 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -52,11 +52,6 @@ void net::begin() { // Latch sntp_set_time_sync_notification_cb(onTimeSync); - - // Keep connect off the NVS write path - WiFi.begin persists credentials to flash by - // default, and a cold bring-up from WIFI_OFF (every connect, since navigate powers the - // radio down) hangs on that write. Credentials already live in our own settings. - WiFi.persistent(false); } void net::stopWifi() {