Turned off some XBee debugging

This commit is contained in:
Sara Damiano
2018-09-14 10:48:46 -04:00
2 changed files with 6 additions and 5 deletions

View File

@@ -978,6 +978,7 @@ finish:
}
data = "";
}
//DBG('<', index, '>');
return index;
}

View File

@@ -669,7 +669,7 @@ protected:
while (stream.available() < 4) {}; // wait for any response
strIP = stream.readStringUntil('\r'); // read result
strIP.trim();
DBG("<<< ", strIP);
//DBG("<<< ", strIP);
if (!strIP.endsWith(GF("ERROR"))) gotIP = true;
delay(100); // short wait before trying again
}
@@ -783,7 +783,7 @@ finish:
if (data.length()) {
DBG("### Unhandled:", data, "\r\n");
} else {
DBG("### NO RESPONSE!\r\n");
DBG("### NO RESPONSE FROM MODEM!\r\n");
}
} else {
data.trim();
@@ -820,7 +820,7 @@ finish:
// Default guard time is 1s, but the init fxn decreases it to 250 ms
delay(guardTime);
streamWrite(GF("+++")); // enter command mode
DBG("+++");
//DBG("+++");
success = (1 == waitResponse(guardTime*2));
triesMade ++;
}
@@ -846,7 +846,7 @@ finish:
while (!stream.available() && millis() - startMillis < timeout) {};
String res = stream.readStringUntil('\r'); // lines end with carriage returns
res.trim();
DBG("<<< ", res);
//DBG("<<< ", res);
return res;
}