サーバーでhttpリクエストを作成し、httpページのコンテンツを読み取るarduinoプロジェクトに取り組んでいます。ループには関数があります:
String eventValue = check_for_event();
String check_for_event(){
if (client.connect(server, 80)) {
client.print("GET /check_for_event.php?q=");
client.print(class_code);
client.println(" HTTP/1.0");
client.println();
return readPage();
} else{ return "704"; }
}
String readPage(){
stringPos = 0;
memset( &inString, 0, 32 );
int print_flag=0;
while(true){
if (client.available()) {
char c = client.read();
if (c == '<' ) {
startRead = true;
}else if(startRead){
if(c != '>'){
inString[stringPos] = c;
stringPos ++;
}else{
startRead = false;
client.stop();
client.flush();
print_flag=1;
return inString;
}
}
}
}
if(print_flag==0){return "804";}
}
これは私のコードの一部で、3 秒ごとに呼び出します。何時間も問題なく動作しますが、突然クラッシュし、その理由がわかりません。check_for_event 関数のどこかでクラッシュすることがわかりました。