Adjust ublox gsm location

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2020-02-07 16:58:44 -05:00
parent 24a57d7fd3
commit badcee518e
2 changed files with 15 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ void setup() {
// Set GSM module baud rate
TinyGsmAutoBaud(SerialAT,GSM_AUTOBAUD_MIN,GSM_AUTOBAUD_MAX);
//SerialAT.begin(9600);
//SerialAT.begin(115200);
delay(3000);
}
@@ -174,7 +174,7 @@ void loop() {
#endif
DBG("Waiting for network...");
if (!modem.waitForNetwork()) {
if (!modem.waitForNetwork(600000L)) {
delay(10000);
return;
}