Rename for consistency

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2024-05-17 14:34:45 -04:00
parent 7f71dec63f
commit 6e76ba92e5
3 changed files with 8 additions and 5 deletions

View File

@@ -23,6 +23,7 @@ jobs:
[
TINY_GSM_MODEM_A6,
TINY_GSM_MODEM_BG96,
TINY_GSM_MODEM_BG95SSL,
TINY_GSM_MODEM_ESP8266,
TINY_GSM_MODEM_M95,
TINY_GSM_MODEM_M590,

View File

@@ -75,13 +75,13 @@ typedef TinyGsmM95::GsmClientM95 TinyGsmClient;
#elif defined(TINY_GSM_MODEM_BG96)
#include "TinyGsmClientBG96.h"
typedef TinyGsmBG96 TinyGsm;
typedef TinyGsmBG96::GsmClientBG96 TinyGsmClient;
typedef TinyGsmBG96 TinyGsm;
typedef TinyGsmBG96::GsmClientBG96 TinyGsmClient;
typedef TinyGsmBG96::GsmClientSecureBG96 TinyGsmClientSecure;
#elif defined(TINY_GSM_MODEM_SECURE_BG95)
#include "TinyGsmClientSecureBG95.h"
typedef TinyGsmBG95 TinyGsm;
#elif defined(TINY_GSM_MODEM_BG95SSL)
#include "TinyGsmClientBG95SSL.h"
typedef TinyGsmBG95 TinyGsm;
typedef TinyGsmBG95::GsmClientSecureBG95 TinyGsmClientSecure;
#elif defined(TINY_GSM_MODEM_A6) || defined(TINY_GSM_MODEM_A7)

View File

@@ -180,6 +180,8 @@ class TinyGsmBG95 : public TinyGsmModem<TinyGsmBG95>,
// Enable automatic time zone update
sendAT(GF("+CTZU=1"));
if (waitResponse(10000L) != 1) { return false; }
return true;
}
/*