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
Fix ambiguous overload for empty ip address for ESP's
v_master
Sara Damiano
6 years ago
parent
fcf100f5f6
commit
69d178f98c
4 changed files
with
4 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/TinyGsmClientBG96.h
+1
-1
src/TinyGsmClientM95.h
+1
-1
src/TinyGsmClientMC60.h
+1
-1
src/TinyGsmClientUBLOX.h
+ 1
- 1
src/TinyGsmClientBG96.h
View File
@ -462,7 +462,7 @@ public:
if
(
res
!
=
1
)
return
false
;
return
localIP
(
)
!
=
0
;
return
localIP
(
)
!
=
IPAddress
(
0
,
0
,
0
,
0
)
;
}
/*
+ 1
- 1
src/TinyGsmClientM95.h
View File
@ -500,7 +500,7 @@ public:
if
(
res
!
=
1
)
return
false
;
return
localIP
(
)
!
=
0
;
return
localIP
(
)
!
=
IPAddress
(
0
,
0
,
0
,
0
)
;
}
/*
+ 1
- 1
src/TinyGsmClientMC60.h
View File
@ -528,7 +528,7 @@ public:
if
(
res
!
=
1
)
return
false
;
return
localIP
(
)
!
=
0
;
return
localIP
(
)
!
=
IPAddress
(
0
,
0
,
0
,
0
)
;
}
/*
+ 1
- 1
src/TinyGsmClientUBLOX.h
View File
@ -598,7 +598,7 @@ public:
if
(
res
!
=
1
)
return
false
;
return
localIP
(
)
!
=
0
;
return
localIP
(
)
!
=
IPAddress
(
0
,
0
,
0
,
0
)
;
}
/*
Write
Preview
Loading…
Cancel
Save