Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2024-05-23 09:38:29 -04:00
parent 46d978255c
commit 6bb52e3ac8
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ class TinyGsmSim70xx : public TinyGsmModem<SIM70xxType>,
*/
protected:
bool factoryDefaultImpl() {
return false
return false;
}
/*

View File

@@ -451,7 +451,7 @@ class TinyGsmModem {
String manufacturer = MODEM_MANUFACTURER;
thisModem().sendAT(GF("+CGMI")); // 3GPP TS 27.007 standard
String res;
if (thisModem().waitResponse(1000L, res) != 1) { return manf; }
if (thisModem().waitResponse(1000L, res) != 1) { return manufacturer; }
thisModem().cleanResponseString(res);
return res;
}