Sfoglia il codice sorgente

Modify HTTP OTA to not erase saved credentials (#2758) (#2778)

galjonsfigur 5 anni fa
parent
commit
7a969b5651
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      lua_examples/lfs/HTTP_OTA.lua

+ 1 - 1
lua_examples/lfs/HTTP_OTA.lua

@@ -65,7 +65,7 @@ finalise = function(sck)
   sck:close()
   local s = file.stat(image)
   if (s and size == s.size) then
-    wifi.setmode(wifi.NULLMODE)
+    wifi.setmode(wifi.NULLMODE, false)
     collectgarbage();collectgarbage()
       -- run as separate task to maximise RAM available
     node.task.post(function() node.flashreload(image) end)