我们正在使用 Azure IoT Hub 实施 IoT 遥测解决方案。通过使用此处的项目,我们能够在ESP8266上实现成功的基本解决方案。然而,我们希望 ESP 也可以作为本地 WiFi 网络上的 Web 服务器工作,主要用于初始配置目的。
如果我们将这一行添加到上述项目中:
#include <ESP8266WebServer.h>
ESP8266WebServer server(80);
项目编译,但我们不断在 ESP 上获得“核心转储”,并且设备停止工作。
致命异常 29(StoreProhibitedCause):epc1=0x4000e1b2,epc2=0x00000000,epc3=0x00000000,excvaddr=0x00000004,depc=0x00000000
异常 (29): epc1=0x4000e1b2 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000004 depc=0x00000000
ctx: cont sp: 3fff4700 软 WDT 复位
ctx:续 sp:3fff4460 结束:3fff4ce0 偏移量:01b0
stack>>> 3fff4610: 40001da0 00000078 00000000 00000010 3fff4620: 40001f46 0000000d 66089700 263a390c 3fff4630: 66666633 30303734 88fd4100 5da4cdaf 3fff4640: 2395829e 2c6ea747 4f2f4c52 72696e6d
3fff4650: 00000000 2e353230 306c7263 5503061d 3fff4660: 00000000 3fff4740 3fff4740 3fffa878 3fff4670: 00000000 3fff46e0 3fff46e0 3ffec9ba 3fff4680: 40002514 3fffdd3c 3fff4ce0 3fff4700 3fff4690:00000000 00000008 00000008 00000001 3fff46a0:00000000 3fff4700 00000000 3fff4638
¿ 有没有人遇到过这个问题并找到解决方法?