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
Fixed read() to not wait on closed socket
v_master
SRGDamia1
7 years ago
parent
327c500b3e
commit
c7d79f40dd
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/TinyGsmClientA6.h
+1
-1
src/TinyGsmClientESP8266.h
+1
-1
src/TinyGsmClientM590.h
+ 1
- 1
src/TinyGsmClientA6.h
View File
@ -126,7 +126,7 @@ public:
continue
;
}
/
/
TODO
:
Read
directly
into
user
buffer
?
if
(
!
rx
.
size
(
)
)
{
if
(
!
rx
.
size
(
)
&
&
sock_connected
)
{
at
-
>
maintain
(
)
;
/
/
break
;
}
+ 1
- 1
src/TinyGsmClientESP8266.h
View File
@ -108,7 +108,7 @@ public:
continue
;
}
/
/
TODO
:
Read
directly
into
user
buffer
?
if
(
!
rx
.
size
(
)
)
{
if
(
!
rx
.
size
(
)
&
&
sock_connected
)
{
at
-
>
maintain
(
)
;
/
/
break
;
}
+ 1
- 1
src/TinyGsmClientM590.h
View File
@ -123,7 +123,7 @@ public:
continue
;
}
/
/
TODO
:
Read
directly
into
user
buffer
?
if
(
!
rx
.
size
(
)
)
{
if
(
!
rx
.
size
(
)
&
&
sock_connected
)
{
at
-
>
maintain
(
)
;
/
/
break
;
}
Write
Preview
Loading…
Cancel
Save