We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5615ffd commit efc57ccCopy full SHA for efc57cc
src/esp32/ESP32Platform.h
@@ -41,6 +41,7 @@ void serialLogger(const NostrString &str) {
41
*/
42
void initWifi(NostrString ssid, NostrString passphrase, int unused = 6) {
43
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)
45
WiFi.begin(ssid, passphrase);
46
Serial.println("Connecting to " + ssid);
47
while (WiFi.status() != WL_CONNECTED) {
0 commit comments