Skip to content

Commit efc57cc

Browse files
Disable wifi persistence (#15)
Don't wear out the flash by writing wifi credentials to it at boot. This also fixes the wifi connection on a159x36's QEMU for ESP32.
1 parent 5615ffd commit efc57cc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/esp32/ESP32Platform.h

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ void serialLogger(const NostrString &str) {
4141
*/
4242
void initWifi(NostrString ssid, NostrString passphrase, int unused = 6) {
4343
esp_wifi_start();
44+
WiFi.persistent(false); // don't wear out the flash by writing wifi credentials to it (also fixes wifi connection on a159x36's QEMU for ESP32)
4445
WiFi.begin(ssid, passphrase);
4546
Serial.println("Connecting to " + ssid);
4647
while (WiFi.status() != WL_CONNECTED) {

0 commit comments

Comments
 (0)