Skip to content

Commit

Permalink
Increased internal receive buffer size to 2048 bytes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Henk van Boeijen committed Jul 2, 2015
1 parent 9bfc9ee commit ca64c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Solid.Arduino/ArduinoSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private StringRequest(StringReadMode mode, char terminator, int blockLength)
private const byte SysExStart = 0xF0;
private const byte SysExEnd = 0xF7;

private const int Buffersize = 512;
private const int Buffersize = 2048;
private const int MaxQueuelength = 100;

private readonly ISerialConnection _connection;
Expand Down

0 comments on commit ca64c93

Please sign in to comment.