From d9802ee91f5e6b56b0cfc5a43fc91d58aab98277 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Wed, 29 Apr 2020 14:00:50 +0200 Subject: [PATCH] Change the buffer write size to something small --- core-buffer/include/buffer_config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index eb0c99d..5d27dfd 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -35,7 +35,7 @@ namespace core_buffer { const int WRITER_RB_BUFFER_SLOTS = 5; // How many frames to buffer before flushing to file. - const size_t WRITER_BUFFER_SIZE = 100; + const size_t WRITER_BUFFER_SIZE = 2; // Number of pulses between each statistics print out. const size_t STATS_MODULO = 100;