Version bump

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2020-02-06 18:24:22 -05:00
parent d3d1083d8f
commit 5daa3efa82
10 changed files with 32 additions and 29 deletions

View File

@@ -113,7 +113,7 @@ class TinyGsmBG96
public:
virtual int connect(const char *host, uint16_t port, int timeout_s) {
int connect(const char* host, uint16_t port, int timeout_s) {
stop();
TINY_GSM_YIELD();
rx.clear();

View File

@@ -114,7 +114,7 @@ class TinyGsmM95
public:
virtual int connect(const char *host, uint16_t port, int timeout_s) {
int connect(const char* host, uint16_t port, int timeout_s) {
stop();
TINY_GSM_YIELD();
rx.clear();

View File

@@ -116,7 +116,7 @@ class TinyGsmMC60
public:
virtual int connect(const char *host, uint16_t port, int timeout_s) {
int connect(const char* host, uint16_t port, int timeout_s) {
stop();
TINY_GSM_YIELD();
rx.clear();

View File

@@ -10,7 +10,7 @@
#define SRC_TINYGSMCOMMON_H_
// The current library version number
#define TINYGSM_VERSION "0.9.19"
#define TINYGSM_VERSION "0.10.0"
#if defined(SPARK) || defined(PARTICLE)
#include "Particle.h"
@@ -118,6 +118,7 @@ uint32_t TinyGsmAutoBaud(T& SerialAT, uint32_t minimum = 9600,
}
}
}
SerialAT.begin(minimum);
return 0;
}