Browse Source

Fixed JSON

v_master
SRGDamia1 7 years ago
parent
commit
9f82293d70
4 changed files with 16 additions and 16 deletions
  1. +1
    -1
      library.json
  2. +4
    -4
      src/TinyGsmClientA6.h
  3. +4
    -4
      src/TinyGsmClientESP8266.h
  4. +7
    -7
      src/TinyGsmClientSIM800.h

+ 1
- 1
library.json View File

@ -19,7 +19,7 @@
"repository": "repository":
{ {
"type": "git", "type": "git",
"url": "https://github.com/EnviroDIY/TinyGSM"
"url": "https://github.com/EnviroDIY/TinyGSM.git"
}, },
"homepage": "https://github.com/vshymanskyy/TinyGSM", "homepage": "https://github.com/vshymanskyy/TinyGSM",
"export": { "export": {


+ 4
- 4
src/TinyGsmClientA6.h View File

@ -177,10 +177,10 @@ public:
String remoteIP() TINY_GSM_ATTR_NOT_IMPLEMENTED; String remoteIP() TINY_GSM_ATTR_NOT_IMPLEMENTED;
private: private:
TinyGsmA6* at;
uint8_t mux;
bool sock_connected;
RxFifo rx;
TinyGsmA6* at;
uint8_t mux;
bool sock_connected;
RxFifo rx;
}; };
//============================================================================// //============================================================================//


+ 4
- 4
src/TinyGsmClientESP8266.h View File

@ -170,10 +170,10 @@ public:
String remoteIP() TINY_GSM_ATTR_NOT_IMPLEMENTED; String remoteIP() TINY_GSM_ATTR_NOT_IMPLEMENTED;
private: private:
TinyGsmESP8266* at;
uint8_t mux;
bool sock_connected;
RxFifo rx;
TinyGsmESP8266* at;
uint8_t mux;
bool sock_connected;
RxFifo rx;
}; };
//============================================================================// //============================================================================//


+ 7
- 7
src/TinyGsmClientSIM800.h View File

@ -184,13 +184,13 @@ public:
String remoteIP() TINY_GSM_ATTR_NOT_IMPLEMENTED; String remoteIP() TINY_GSM_ATTR_NOT_IMPLEMENTED;
private: private:
TinyGsmSim800* at;
uint8_t mux;
uint16_t sock_available;
uint32_t prev_check;
bool sock_connected;
bool got_data;
RxFifo rx;
TinyGsmSim800* at;
uint8_t mux;
uint16_t sock_available;
uint32_t prev_check;
bool sock_connected;
bool got_data;
RxFifo rx;
}; };
//============================================================================// //============================================================================//


Loading…
Cancel
Save