Extra debugging
This commit is contained in:
@@ -519,7 +519,11 @@ private:
|
||||
streamWrite(tail...);
|
||||
}
|
||||
|
||||
int streamRead() { return stream.read(); }
|
||||
int streamRead() {
|
||||
int c = stream.read();
|
||||
DBG((char)c)
|
||||
return c;
|
||||
}
|
||||
|
||||
String streamReadUntil(char c) {
|
||||
String return_string = stream.readStringUntil(c);
|
||||
|
Reference in New Issue
Block a user