Browse Source

Fix #578

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
dependabot/github_actions/actions/checkout-4
Sara Damiano 3 years ago
parent
commit
47793e0ad9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/TinyGsmClientSIM7080.h

+ 1
- 1
src/TinyGsmClientSIM7080.h View File

@ -247,7 +247,7 @@ class TinyGsmSim7080 : public TinyGsmSim70xx<TinyGsmSim7080>,
// 2: CHAP
// 3: PAP or CHAP
if (pwd && strlen(pwd) > 0 && user && strlen(user) > 0) {
sendAT(GF("+CNCFG=0,1,\""), apn, "\",\"", "\",\"", user, pwd, '"');
sendAT(GF("+CNCFG=0,1,\""), apn, "\",\"", user, "\",\"", pwd, '"');
waitResponse();
} else if (user && strlen(user) > 0) {
// Set the user name only


Loading…
Cancel
Save