Service Interface Stream buffer size higher to print long buffers (like nav data)

This commit is contained in:
2019-11-25 00:14:39 +01:00
parent 2f14fd5d4d
commit 2039aa5665
3 changed files with 7 additions and 7 deletions

View File

@ -30,7 +30,7 @@ private:
typedef std::char_traits<char> Traits;
// Work in buffer mode. It is also possible to work without buffer.
static size_t const BUF_SIZE = 128;
static size_t const BUF_SIZE = 255;
char buf[BUF_SIZE];
// In this function, the characters are parsed.