Skip to content

Commit 3b2af11

Browse files
SerialStreamer: Don't output a tab after each buffer in stream binary mode. (#72)
When raw data is captured and the tab (ascii value 9) is present in the data file, it produces a sound glitch.
1 parent c854391 commit 3b2af11

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

source/samples/SerialStreamer.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ void SerialStreamer::streamBuffer(ManagedBuffer buffer)
8787

8888
while(p < end)
8989
uBit.serial.putc(*p++);
90-
91-
uBit.serial.putc('\t');
9290
}
9391

9492
// if a HEX mode is requested, format using printf, framed by sample size..

0 commit comments

Comments
 (0)