File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
name =SerialTransfer
2
- version =3.1.4
2
+ version =3.1.5
3
3
author =PowerBroker2 <gitstuff2@gmail.com>
4
4
maintainer =PowerBroker2 <gitstuff2@gmail.com>
5
5
sentence =Arduino library to transfer packetized data fast/reliably via UART/Serial
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ void I2CTransfer::processData()
102
102
103
103
if (classToUse->status != CONTINUE)
104
104
{
105
- if (classToUse->status < 0 )
105
+ if (classToUse->status <= 0 )
106
106
classToUse->reset ();
107
107
108
108
break ;
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ uint8_t SerialTransfer::available()
102
102
103
103
if (status != CONTINUE)
104
104
{
105
- if (status < 0 )
105
+ if (status <= 0 )
106
106
reset ();
107
107
108
108
break ;
@@ -114,7 +114,7 @@ uint8_t SerialTransfer::available()
114
114
bytesRead = packet.parse (recChar, valid);
115
115
status = packet.status ;
116
116
117
- if (status < 0 )
117
+ if (status <= 0 )
118
118
reset ();
119
119
}
120
120
You can’t perform that action at this time.
0 commit comments