Merge branch 'original'

This commit is contained in:
Sara Damiano
2018-09-05 17:42:03 -04:00
19 changed files with 78 additions and 12 deletions

View File

@@ -50,7 +50,7 @@ class TinyGsmBG96
//============================================================================//
//============================================================================//
// The BG96 Internal Client Class
// The Internal BG96 Client Class
//============================================================================//
//============================================================================//
@@ -120,6 +120,11 @@ public:
return write(&c, 1);
}
virtual size_t write(const char *str) {
if (str == NULL) return 0;
return write((const uint8_t *)str, strlen(str));
}
virtual int available() {
TINY_GSM_YIELD();
if (!rx.size()) {