Browse Source

Fix fall through

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
dependabot/github_actions/actions/checkout-4
Sara Damiano 1 year ago
parent
commit
c2de83b4ca
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/TinyGsmClientXBee.h

+ 2
- 0
src/TinyGsmClientXBee.h View File

@ -783,9 +783,11 @@ class TinyGsmXBee : public TinyGsmModem<TinyGsmXBee>,
switch (beeType) { switch (beeType) {
case XBEE_S6B_WIFI: { case XBEE_S6B_WIFI: {
sendAT(GF("NS")); sendAT(GF("NS"));
break;
} }
default: { default: {
sendAT(GF("N1")); sendAT(GF("N1"));
break;
} }
} }
String DNSaddr; String DNSaddr;


Loading…
Cancel
Save