Browse Source

Woops, extra comma

v_master
Sara Damiano 5 years ago
parent
commit
a5b1681304
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/TinyGsmClientM95.h
  2. +1
    -1
      src/TinyGsmClientMC60.h

+ 1
- 1
src/TinyGsmClientM95.h View File

@ -589,7 +589,7 @@ protected:
DBG("SSL not yet supported on this module!"); DBG("SSL not yet supported on this module!");
} }
uint32_t timeout_ms = ((uint32_t)timeout_s) * 1000; uint32_t timeout_ms = ((uint32_t)timeout_s) * 1000;
sendAT(GF("+QIOPEN="), mux, GF(",\""), , GF("TCP"), GF("\",\""), host,
sendAT(GF("+QIOPEN="), mux, GF(",\""), GF("TCP"), GF("\",\""), host,
GF("\","), port); GF("\","), port);
int rsp = waitResponse(timeout_ms, int rsp = waitResponse(timeout_ms,
GF("CONNECT OK" GSM_NL), GF("CONNECT OK" GSM_NL),


+ 1
- 1
src/TinyGsmClientMC60.h View File

@ -588,7 +588,7 @@ protected:
DBG("SSL not yet supported on this module!"); DBG("SSL not yet supported on this module!");
} }
uint32_t timeout_ms = ((uint32_t)timeout_s) * 1000; uint32_t timeout_ms = ((uint32_t)timeout_s) * 1000;
sendAT(GF("+QIOPEN="), mux, GF(",\""), , GF("TCP"), GF("\",\""), host,
sendAT(GF("+QIOPEN="), mux, GF(",\""), GF("TCP"), GF("\",\""), host,
GF("\","), port); GF("\","), port);
int rsp = waitResponse(timeout_ms, int rsp = waitResponse(timeout_ms,
GF("CONNECT OK" GSM_NL), GF("CONNECT OK" GSM_NL),


Loading…
Cancel
Save