Decreased boot wait for SIM7000

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2020-04-19 15:16:33 -04:00
parent 4aadaf04ec
commit ad42db2131
5 changed files with 5 additions and 5 deletions

View File

@@ -216,7 +216,7 @@ class TinyGsmSim7000 : public TinyGsmModem<TinyGsmSim7000>,
if (waitResponse(10000L) != 1) { return false; }
sendAT(GF("+CFUN=1,1"));
if (waitResponse(10000L) != 1) { return false; }
waitResponse(60000L, GF("SMS Ready"), GF("RDY"));
waitResponse(10000L, GF("SMS Ready"), GF("RDY"));
return init();
}