Bug correction

Updated version (bug on protocol initialization)
This commit is contained in:
JJROBOTS
2017-05-06 20:36:29 +01:00
parent 0ff1d58c97
commit b4ae198db0
3 changed files with 20 additions and 27 deletions

View File

@@ -15,7 +15,7 @@
// for DEBUG uncomment this lines...
//#define OSCDEBUG 3
//#define OSCDEBUG 0
char UDPBuffer[8]; // input message buffer
@@ -105,7 +105,6 @@ void OSC_MsgRead()
UDPBuffer[i] = UDPBuffer[i - 1];
}
UDPBuffer[0] = Serial1.read();
Serial.print(UDPBuffer[0]);
#ifdef OSCDEBUG3
Serial.print(UDPBuffer[0]);
#endif