Skip to content

Commit 1411476

Browse files
Error with SLIP reception
1 parent bd9b3ba commit 1411476

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MicroOsc
2-
version=0.1.5
2+
version=0.1.6
33
author=Thomas O Fredericks
44
maintainer=Thomas O Fredericks
55
sentence=Simple and lightweight Open Sound Control (OSC) library

src/MicroOscSlip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class MicroSlip : public Print {
6262
if ( escaping ) {
6363
if ( streamByte == SLIP_ESC_END ) {
6464
buffer[parseIndex++]=SLIP_END;
65-
} else if ( streamByte == SLIP_ESC_END ) {
65+
} else if ( streamByte == SLIP_ESC_ESC ) {
6666
buffer[parseIndex++]=SLIP_ESC;
6767
}
6868
/*

0 commit comments

Comments
 (0)