Browse Source

Made internal stream public again, fixing #373

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
v_master
Sara Damiano 4 years ago
parent
commit
5a6936b37a
14 changed files with 28 additions and 14 deletions
  1. +2
    -1
      src/TinyGsmClientA6.h
  2. +2
    -1
      src/TinyGsmClientBG96.h
  3. +2
    -1
      src/TinyGsmClientESP8266.h
  4. +2
    -1
      src/TinyGsmClientM590.h
  5. +2
    -1
      src/TinyGsmClientM95.h
  6. +2
    -1
      src/TinyGsmClientMC60.h
  7. +2
    -1
      src/TinyGsmClientSIM5360.h
  8. +2
    -1
      src/TinyGsmClientSIM7000.h
  9. +2
    -1
      src/TinyGsmClientSIM7600.h
  10. +2
    -1
      src/TinyGsmClientSIM800.h
  11. +2
    -1
      src/TinyGsmClientSaraR4.h
  12. +2
    -1
      src/TinyGsmClientSequansMonarch.h
  13. +2
    -1
      src/TinyGsmClientUBLOX.h
  14. +2
    -1
      src/TinyGsmClientXBee.h

+ 2
- 1
src/TinyGsmClientA6.h View File

@ -560,8 +560,9 @@ class TinyGsmA6 : public TinyGsmModem<TinyGsmA6>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientA6* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientBG96.h View File

@ -673,8 +673,9 @@ class TinyGsmBG96 : public TinyGsmModem<TinyGsmBG96>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientBG96* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientESP8266.h View File

@ -441,8 +441,9 @@ class TinyGsmESP8266 : public TinyGsmModem<TinyGsmESP8266>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientESP8266* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientM590.h View File

@ -452,8 +452,9 @@ class TinyGsmM590 : public TinyGsmModem<TinyGsmM590>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientM590* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientM95.h View File

@ -616,8 +616,9 @@ class TinyGsmM95 : public TinyGsmModem<TinyGsmM95>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientM95* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientMC60.h View File

@ -588,8 +588,9 @@ class TinyGsmMC60 : public TinyGsmModem<TinyGsmMC60>,
return waitResponse(1000, r1, r2, r3, r4, r5, r6);
}
protected:
public:
Stream& stream;
protected:
GsmClientMC60* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientSIM5360.h View File

@ -713,8 +713,9 @@ class TinyGsmSim5360 : public TinyGsmModem<TinyGsmSim5360>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientSim5360* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientSIM7000.h View File

@ -754,8 +754,9 @@ class TinyGsmSim7000 : public TinyGsmModem<TinyGsmSim7000>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientSim7000* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientSIM7600.h View File

@ -806,8 +806,9 @@ class TinyGsmSim7600 : public TinyGsmModem<TinyGsmSim7600>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientSim7600* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientSIM800.h View File

@ -720,8 +720,9 @@ class TinyGsmSim800 : public TinyGsmModem<TinyGsmSim800>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientSim800* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientSaraR4.h View File

@ -877,8 +877,9 @@ class TinyGsmSaraR4 : public TinyGsmModem<TinyGsmSaraR4>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientSaraR4* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
bool has2GFallback;


+ 2
- 1
src/TinyGsmClientSequansMonarch.h View File

@ -706,8 +706,9 @@ class TinyGsmSequansMonarch
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientSequansMonarch* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientUBLOX.h View File

@ -810,8 +810,9 @@ class TinyGsmUBLOX : public TinyGsmModem<TinyGsmUBLOX>,
return waitResponse(1000, r1, r2, r3, r4, r5);
}
protected:
public:
Stream& stream;
protected:
GsmClientUBLOX* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
};


+ 2
- 1
src/TinyGsmClientXBee.h View File

@ -1440,8 +1440,9 @@ class TinyGsmXBee : public TinyGsmModem<TinyGsmXBee>,
return false;
}
protected:
public:
Stream& stream;
protected:
GsmClientXBee* sockets[TINY_GSM_MUX_COUNT];
const char* gsmNL = GSM_NL;
int16_t guardTime;


Loading…
Cancel
Save