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
Added destructors
v_master
Sara Damiano
5 years ago
parent
da84f955e9
commit
de4162907d
11 changed files
with
12 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
src/TinyGsmClientA6.h
+1
-0
src/TinyGsmClientBG96.h
+1
-0
src/TinyGsmClientESP8266.h
+1
-0
src/TinyGsmClientM590.h
+1
-0
src/TinyGsmClientM95.h
+1
-0
src/TinyGsmClientMC60.h
+1
-0
src/TinyGsmClientSIM7000.h
+1
-0
src/TinyGsmClientSIM800.h
+1
-0
src/TinyGsmClientUBLOX.h
+2
-0
src/TinyGsmClientXBee.h
+1
-2
src/TinyGsmCommon.h
+ 1
- 0
src/TinyGsmClientA6.h
View File
@ -184,6 +184,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmA6
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientBG96.h
View File
@ -220,6 +220,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmBG96
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientESP8266.h
View File
@ -205,6 +205,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmESP8266
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientM590.h
View File
@ -181,6 +181,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmM590
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientM95.h
View File
@ -220,6 +220,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmM95
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientMC60.h
View File
@ -224,6 +224,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmMC60
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientSIM7000.h
View File
@ -249,6 +249,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmSim7000
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientSIM800.h
View File
@ -244,6 +244,7 @@ public:
{
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmSim800
(
)
{
}
/*
*
Basic
functions
+ 1
- 0
src/TinyGsmClientUBLOX.h
View File
@ -254,6 +254,7 @@ public:
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
isCatM
=
false
;
/
/
For
SARA
R4
and
N4
series
}
virtual
~
TinyGsmUBLOX
(
)
{
}
/*
*
Basic
functions
+ 2
- 0
src/TinyGsmClientXBee.h
View File
@ -277,6 +277,8 @@ public:
inCommandMode
=
false
;
memset
(
sockets
,
0
,
sizeof
(
sockets
)
)
;
}
virtual
~
TinyGsmXBee
(
)
{
}
/*
*
Basic
functions
+ 1
- 2
src/TinyGsmCommon.h
View File
@ -211,6 +211,7 @@ public:
TinyGsmModem
(
Stream
&
stream
)
:
stream
(
stream
)
{
}
virtual
~
TinyGsmModem
(
)
{
}
/*
*
Basic
functions
@ -331,6 +332,4 @@ public:
}
;
#
endif
Write
Preview
Loading…
Cancel
Save