Removed some non-ascii characters

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2020-02-13 17:34:46 -05:00
parent 43391944df
commit cbcf7734bb
8 changed files with 15 additions and 12 deletions

View File

@@ -590,7 +590,7 @@ class TinyGsmUBLOX
uint32_t startMillis = millis();
// create a socket
sendAT(GF("+USOCR=6")); // create a socket
sendAT(GF("+USOCR=6"));
// reply is +USOCR: ## of socket created
if (waitResponse(GF(GSM_NL "+USOCR:")) != 1) { return false; }
*mux = streamGetInt('\n');