A few debug prints, look for "+RECEIVE" from SIMCOM's

This commit is contained in:
Sara Damiano
2019-05-07 15:39:36 -04:00
parent 3df5d92955
commit a63fd05fed
7 changed files with 34 additions and 9 deletions

View File

@@ -655,7 +655,7 @@ protected:
sockets[mux]->rx.put(c);
}
waitResponse();
DBG("### READ:", mux, ",", len);
DBG("### READ:", len, "from", mux);
return len;
}
@@ -666,7 +666,7 @@ protected:
streamSkipUntil(','); // Skip total received
streamSkipUntil(','); // Skip have read
result = stream.readStringUntil('\n').toInt();
DBG("### STILL:", mux, "has", result);
DBG("### DATA AVAILABLE:", result, "on", mux);
waitResponse();
}
if (!result) {