ESP8266 在简单的 http 请求后崩溃

ESP8266 crashes after simple http request

我正在使用 NodeMCU V3 模块。每当我尝试向我的服务器发出 http 请求时,模块就会崩溃。

代码如下:

void setup() {
    WiFi.begin("wifi-name", "wifi-password");  

    while (WiFi.status() != WL_CONNECTED) {  //Wait for the WiFI to connect }
}
void loop() {
   HTTPClient http; 
   WiFiClient client;

   http.begin( client, "server-address" );  

   int httpCode = http.GET();  
   String payload = http.getString();  //Get the response payload

   Serial.println(httpCode);   //Print HTTP return code
   Serial.println(payload);    //Print request response payload

   http.end();  //Close connection

   delay( 1000 );
}

这是在串行监视器中看到的结果:

200
["JSON response from the server"]

Exception (28):
epc1=0x40212e82 epc2=0x00000000 epc3=0x00000000 excvaddr=0x000001b6 depc=0x00000000

>>>stack>>>

ctx: cont
sp: 3ffffc90 end: 3fffffc0 offset: 01a0
3ffffe30:  00000000 4bc6a7f0 0000333f 3ffee5f8  
3ffffe40:  00000000 00000000 4bc6a7f0 00000000  
[...] 
3fffffb0:  feefeffe feefeffe 3ffe84e8 40100c41  
<<<stack<<<

奇怪的是它正确地从服务器检索响应,但是大约一秒钟后,它向串行监视器吐出异常并重置。起初我认为这可能是因为我同时 运行ing ESP8266WebServer,但即使我 运行 我在互联网上可以找到的最基本的示例,它仍然崩溃。我尝试在 Arduino IDE 而不是 PlatformIO 上编译相同的代码,甚至使用不同的 NodeMCU,都无济于事。

编辑:玩了一会儿之后,似乎将延迟设置为至少 10 秒会使 NodeMCU 在 3 个请求后崩溃,而不是在第一个请求后崩溃。会不会是几次请求后内存溢出了?我是否遗漏了一个关键部分,应该让 ESP8266 为新请求做好准备?

无需在 loop() 中一遍又一遍地重新创建 WiFi 和 HTTP 客户端。您可以在全局范围内声明一次。这是这个简单草图的稳定版本:

#include <Arduino.h>

#include <ESP8266WiFi.h>
#include <ESPHTTPClient.h>

HTTPClient http; 
WiFiClient client;

void setup() {
  Serial.begin(115200);
  Serial.println();
  WiFi.begin("****", "****");  

  Serial.print("Connecting to WiFi");
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("done.");
}

void loop() {
  http.begin(client, "http://httpbin.org/get"); // <1KB payload
//  http.begin(client, "http://www.geekstips.com/esp8266-arduino-tutorial-iot-code-example/"); // 30KB payload

  int httpCode = http.GET();  
  String payload = http.getString();  //Get the response payload

  Serial.println(httpCode);   //Print HTTP return code
  Serial.println(payload);    //Print request response payload

  http.end();  //Close connection

  Serial.printf("Free heap: %d\n", ESP.getFreeHeap());
  delay(1000);
}

报告的空闲堆随着时间的推移非常稳定。 请注意我在注释行中添加的第二个 URL 以进行测试。 http.getString() 很方便,适用于小资源,但会产生意想不到的结果,即较大资源的错误结果 - 您只能看到打印到控制台的正文的一小部分。

对于更大的有效载荷,您应该直接使用低级 WiFiClient 并 read/parse 逐行或逐字符地响应。有关模板,请参阅 https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/client-examples.html 处的文档。

void loop()
{
  WiFiClient client;

  Serial.printf("\n[Connecting to %s ... ", host);
  if (client.connect(host, 80))
  {
    Serial.println("connected]");

    Serial.println("[Sending a request]");
    client.print(String("GET /") + " HTTP/1.1\r\n" +
                 "Host: " + host + "\r\n" +
                 "Connection: close\r\n" +
                 "\r\n"
                );

    Serial.println("[Response:]");
    while (client.connected() || client.available())
    {
      if (client.available())
      {
        String line = client.readStringUntil('\n');
        Serial.println(line);
      }
    }
    client.stop();
    Serial.println("\n[Disconnected]");
  }
  else
  {
    Serial.println("connection failed!]");
    client.stop();
  }
  delay(5000);
}