为什么 NodeMCU 在使用此代码启动后没有错误地崩溃?

Why NodeMCU crashes with no error after boot with this code?

我的ESP8266老是重启

这是我的 init.lua:

cfg={}
cfg.ssid="Sensor"
cfg.auth=AUTH_OPEN
wifi.ap.config(cfg)
wifi.setmode(wifi.STATION)
wifi.sta.getap(function(t)
    available_aps = "" 
    if t then 
        for k,v in pairs(t) do 
            ap = string.format("%-10s",k) 
            ap = trim(ap)
            available_aps = available_aps .. "<option value='".. ap .."'>".. ap .."</option>"
        end 
        setup_server(available_aps)
    end
end)

function setup_server(aps)
    wifi.setmode(wifi.SOFTAP)
    srv=net.createServer(net.TCP)
    srv:listen(80,function(client) 
        client:on("receive",function(client,request)
            wifi.sta.getap(function(t)
                available_aps = "" 
                if t then 
                    for k,v in pairs(t) do 
                        ap = string.format("%-10s",k) 
                        ap = trim(ap)
                        available_aps = available_aps .. "<option value='".. ap .."'>".. ap .."</option>"
                    end 
                end
            end)
            local buf = "";
            local _, _, method, path, vars = string.find(request, "([A-Z]+) (.+)?(.+) HTTP");
            if(method == nil)then
                _, _, method, path = string.find(request, "([A-Z]+) (.+) HTTP");
            end
            local _GET = {}
            if (vars ~= nil)then
                for k, v in string.gmatch(vars, "(%w+)=(%w+)&*") do
                    _GET[k] = v
                end
            end
            buf = "<html><body>"
            buf = buf .. "<h3>Config</h3><br>"
            buf = buf .. "<form method='get' action='http://" .. wifi.ap.getip() .."'>"
            buf = buf .. "Select access point: <select name='ap'>" .. available_aps .. "</select><br>"
            buf = buf .. "Enter wifi password: <input type='password' name='psw'></input><br>"
            buf = buf .. "Server-IP: <input name='ipTCP' value='192.168.178.1'></input><br>"
            buf = buf .. "<br><button type='submit'>Save</button>"
            buf = buf .. "</form></body></html>"
            local _on,_off = "",""
            if(_GET.pin == "ON1")then
                  buf = buf.."NICE";
            elseif(_GET.pin == "OFF1")then
                  gpio.write(led1, gpio.LOW);
            elseif(_GET.pin == "ON2")then
                  gpio.write(led2, gpio.HIGH);
            elseif(_GET.pin == "OFF2")then
                  gpio.write(led2, gpio.LOW);
            end
            client:send(buf);
            client:close();
            collectgarbage();
        end) 
    end)
end

为什么每次重启都死机?

我该如何解决这个问题?

我有 NodeMCU 0.9.5 版本 20150318,由 Lua 5.1.4 提供支持。

另外 lua 个脚本 运行 没问题。

我在 client:on("receive",function(client,request). 它不应该在这里。

  1. 我没有看到对 wifi.sta.connect()
  2. 的调用
  3. 字符串是不可变的,因此每次重新分配 buf 时,都会创建一个新的。是的,GC 会清理它,如果你不先 运行。
  4. 您不能连续调用 client:send() 和 client:close()...好吧,您可以,但效果不是很好。我还担心在一个电话中发送所有这些。
  5. 即使他们不接受回调,wifi 配置和连接例程确实需要 运行 异步,使用计时器调用它们,然后在继续之前检查状态。

第一项是阻碍,其他项可能会导致彻底失败或间歇性失败。