From 1474c4c0a10ba95c42e0636e149e44d68ef32396 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 20 Jul 2020 13:18:36 +0200 Subject: [PATCH] Add configuration file for live_writer --- jf-live-writer/include/live_writer_config.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jf-live-writer/include/live_writer_config.hpp diff --git a/jf-live-writer/include/live_writer_config.hpp b/jf-live-writer/include/live_writer_config.hpp new file mode 100644 index 0000000..0a62457 --- /dev/null +++ b/jf-live-writer/include/live_writer_config.hpp @@ -0,0 +1,9 @@ +#include + +namespace live_writer_config +{ + // MS to retry reading from the image assembler. + const size_t ASSEMBLER_RETRY_MS = 5; + // Number of slots in the reconstruction buffer. + const size_t WRITER_IA_N_SLOTS = 200; +} \ No newline at end of file