sdlog2: raise min write size back

Turns out in practice there was not really a difference, so there was
no reason to change it.
This commit is contained in:
Julian Oes 2016-07-07 11:47:08 +02:00 committed by Lorenz Meier
parent fe91527604
commit 772dc302b6
1 changed files with 2 additions and 2 deletions

View File

@ -147,10 +147,10 @@ static const int LOG_BUFFER_SIZE_DEFAULT = 8192;
#if defined __PX4_POSIX
static const int MAX_WRITE_CHUNK = 2048;
static const int MIN_BYTES_TO_WRITE = 256;
static const int MIN_BYTES_TO_WRITE = 512;
#else
static const int MAX_WRITE_CHUNK = 512;
static const int MIN_BYTES_TO_WRITE = 256;
static const int MIN_BYTES_TO_WRITE = 512;
#endif
static bool _extended_logging = false;