Merge pull request #43 from github0013/sim7600fix

password then user when cid is set
This commit is contained in:
Sara Damiano
2024-05-17 16:15:43 -04:00
committed by GitHub

View File

@@ -323,7 +323,7 @@ class TinyGsmSim7600 : public TinyGsmModem<TinyGsmSim7600>,
// Set the external authentication
if (user && strlen(user) > 0) {
sendAT(GF("+CGAUTH=1,0,\""), user, GF("\",\""), pwd, '"');
sendAT(GF("+CGAUTH=1,0,\""), pwd, GF("\",\""), user, '"');
waitResponse();
}