This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
JSD
/
TinyGSM_Senseright
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Removed default stream
v_master
Sara Damiano
6 years ago
parent
844d59aeab
commit
34104d18fe
10 changed files
with
0 additions
and
48 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-4
src/TinyGsmClientA6.h
+0
-4
src/TinyGsmClientBG96.h
+0
-4
src/TinyGsmClientESP8266.h
+0
-4
src/TinyGsmClientM590.h
+0
-4
src/TinyGsmClientM95.h
+0
-4
src/TinyGsmClientMC60.h
+0
-4
src/TinyGsmClientSIM800.h
+0
-4
src/TinyGsmClientUBLOX.h
+0
-4
src/TinyGsmClientXBee.h
+0
-12
src/TinyGsmCommon.h
+ 0
- 4
src/TinyGsmClientA6.h
View File
@ -177,11 +177,7 @@ private:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmA6
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmA6
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientBG96.h
View File
@ -201,11 +201,7 @@ public:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmBG96
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmBG96
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientESP8266.h
View File
@ -193,11 +193,7 @@ public:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmESP8266
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmESP8266
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientM590.h
View File
@ -174,11 +174,7 @@ private:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmM590
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmM590
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientM95.h
View File
@ -181,11 +181,7 @@ private:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmM95
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmM95
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientMC60.h
View File
@ -208,11 +208,7 @@ public:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmMC60
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmMC60
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientSIM800.h
View File
@ -223,11 +223,7 @@ public:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmSim800
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmSim800
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientUBLOX.h
View File
@ -200,11 +200,7 @@ public:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmUBLOX
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmUBLOX
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
+ 0
- 4
src/TinyGsmClientXBee.h
View File
@ -206,11 +206,7 @@ public:
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmXBee
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmXBee
(
Stream
&
stream
)
#
endif
:
TinyGsmModem
(
stream
)
,
stream
(
stream
)
{
}
+ 0
- 12
src/TinyGsmCommon.h
View File
@ -203,19 +203,7 @@ class TinyGsmModem
public
:
class
GsmClient
:
public
Client
{
friend
class
TinyGsmModem
;
}
;
public
:
#
ifdef GSM_DEFAULT_STREAM
TinyGsmModem
(
Stream
&
stream
=
GSM_DEFAULT_STREAM
)
#
else
TinyGsmModem
(
Stream
&
stream
)
#
endif
:
stream
(
stream
)
{
}
Write
Preview
Loading…
Cancel
Save