0

我按照本教程重置了 wifi shields 固件。如果没有正确完成,这会导致以后出现任何错误吗?

编辑2

我仍然不知道问题可能出在哪里。所以我把我的放在.ino file 这里。(已编译:25.052 字节)

如果有人可以检查它是否在另一个环境中运行并报告它,我会非常高兴。我用假值替换了传感器,所以你不需要添加任何硬件。只需在草图顶部添加您的路由器 ssid 和密码。

如果您将 SD 卡部分注释掉,您会看到它运行了一段时间。但一般不会改变。它的行为看起来像是耗尽了任何资源,就像 Udo Klein 提到的 SRAM 一样。

只是为了检查我是否理解正确:

  • 更少的代码会导致更多的可用闪存。但这应该不会影响SRAM中运行的程序不是吗?--> 但是,如果某些代码部分(如 SD 卡)被注释掉,为什么会有不同的行为呢?

  • 如果我保存很多变量,它会降低可用 SRAM 的数量。(那么 MemoryFree.h lib 应该可以看到它——>它告诉我 const ~6kB free)

  • 每次我从一个函数“返回”时,它都会减少必要的堆栈内存大小,并且本地定义的函数变量通过它的自身调用它的 desctuctor?

是否有值保存在堆内存中,这些值随着每个循环而增长,但在函数调用结束时失去引用?

编辑

只需像昨天一样运行相同的代码并且它工作了两次(-> 只要程序正在运行,它就会不断地发出 http 请求并返回到主循环()方法)。重启就成功了!

所以看起来原因不仅在此处显示的代码逻辑内部。我可以在哪里寻找任何想法?是否可以重新定义变量而不是覆盖那里的价值?


我在 Arduino Mega 2560 上的 Wifi shield 的 C 代码应该读出传感器数据并发出 HTTP 请求。然后将两个结果打印到 SD 卡。

问题:

负责从[1]调用的网络请求的函数,仅在第一次调用后返回。


setup方法是初始化串口连接和sensor管脚,进一步调用下面的Wifi初始化方法initWifi()建立网络连接。

void initWifi(){
// check for the presence of the shield:
if (WiFi.status() == WL_NO_SHIELD) {
  Serial.println("WiFi shield not present");
  // don't continue:
  while(true);
}

  // attempt to connect to Wifi network:
  while(status != WL_CONNECTED){
    Serial.print("Attempting to connect to SSID: ");
    Serial.println(ssid);
    // Connect to WPA/WPA2 network  
    status = WiFi.begin(ssid, pass);

    // wait 10 seconds for connection:
    delay(10000);
  } 
  Serial.println("Connected to wifi");
}

一般的loop()方法是这样的:

...
File myFile = SD.open("sensor.txt", FILE_WRITE);      
if(myFile){    
  String timestamp = requestTimestamp();         <------ call from HERE [1]
  Serial.println("current date is: "+timestamp);

  myFile.println(String(cm)+"  "+timestamp);
  myFile.close();
  Serial.println(String(cm)+"  "+timestamp);
}
...

requestTimestamp()是发出 HTTP HEAD 请求的函数,并且永远不会返回到 loop() 方法(在它完美地工作一次之后!)。

String requestTimestamp(){
  Serial.println("\nRequest timestamp");

  WiFiClient client;
  if(client.connect(server, 80)){
    client.println("HEAD / HTTP/1.1");
    client.println("Host:www.google.com");
    client.println("HTTP-date: asctime-date");
    client.println("Connection: close");
    client.println();
  }  

  String time_str = "-1";
  boolean timestampKnown = false;
  while(client.connected() && !timestampKnown){
    String line = "";
    while(client.available()){    //  && !timestampKnown
      char c = client.read();

      if(c == '\n'){
        if(line.startsWith("Date:")){
          String DATE = line.substring(11, line.length()-4);
          time_str = formatTimestamp(DATE);
          Serial.println("-->"+time_str);
          timestampKnown = true;
        }

        Serial.println(line);
        line = "";
      }else{
        line += String(c);
        c = char();
      }
    }

    //if(timestampKnown)
      //break;
  }
  client.stop();

  Serial.println("--------------------------"+time_str);

  return time_str;   <--- from here it never returns to loop()
}

console output看起来像这样:

SD card initialized.
Attempting to connect to SSID: ********
Connected to wifi

Request timestamp
HTTP/1.1 302 Found
Location: http://www.google.de/?gws_rd=cr&ei=Gm5IUvXHEbeg4AON9YCwCw
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Set-Cookie: PREF=ID=9684aab183999fb2:FF=0:TM=1380478490:LM=1380478490:S=EnaD0yx20-9BT6-4; expires=Tue, 29-Sep-2015 18:14:50 GMT; path=/; domain=.google.com
Set-Cookie: NID=67=R6OUfZAakXBBYSp_a9QRO56OzZxYS2X6RmpFlByzSOMgVXalyfYOuilvzQZjaNPRK9409kjjPsDIOEI4h44qIfljzYfS_57MrsQNaKp8S35iMUHKkgLwrkgGs7dRy6gQ; expires=Mon, 31-Mar-2014 18:14:50 GMT; path=/; domain=.google.com; HttpOnly
P3P: CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."
-->20:14 29.9.2013
Date: Sun, 29 Sep 2013 18:14:50 GMT
Server: gws
Content-Length: 258
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Alternate-Protocol: 80:quic
Connection: close

--------------------------20:14 29.9.2013  <-- last line inside function before return
current date is: 20:14 29.9.2013  <-- printed from main loop() method
220  20:14 29.9.2013  <-- main loop() also




Request timestamp
HTTP/1.1 302 Found
Location: http://www.google.de/?gws_rd=cr&ei=Im5IUvO5GvSs4AOyhYHoAw
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Set-Cookie: PREF=ID=f1a3f58848455aa8:FF=0:TM=1380478498:LM=1380478498:S=cwG8W2Ll10fiiu_e; expires=Tue, 29-Sep-2015 18:14:58 GMT; path=/; domain=.google.com
Set-Cookie: NID=67=v_OGI8alGJj4TJEBZSjz9EYUJljTm58uBSxG_rdAcz6OIUNzoDLPGCBx_UlRw5jFkIKINivce2UhisHnEpsWJlFyQVLSG7n9Jkoopo-g2gNi0BgFbVXjXypcvA5SYBX9; expires=Mon, 31-Mar-2014 18:14:58 GMT; path=/; domain=.google.com; HttpOnly
P3P: CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."
-->20:14 29.9.2013
Date: Sun, 29 Sep 2013 18:14:58 GMT
Server: gws
Content-Length: 258
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Alternate-Protocol: 80:quic
Connection: close 

<--- HERE: print out of the results like before is missing, and nothing futher happens......

服务器是否关心我读出了多少响应?尽管:HTTP 1.0,连接:关闭和 client.stop(),连接是否仍处于打开状态?

我可以成像的唯一原因与网络有关。

4

1 回答 1

0

另一个原因可能是您的 RAM 用完了。您想了解有关progmem的信息。此外,您正在使用 String 对象。我会尽量避免这些。至少你应该检查你实际剩下多少 RAM。.

于 2013-09-30T13:45:23.097 回答