From 83f0b4bffc25dd4f8619220401a0f5ed2f1c1e15 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 3 Nov 2020 15:51:56 +0100 Subject: [PATCH] defaultcfg changes taken over --- defaultcfg/config/FSFWConfig.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/defaultcfg/config/FSFWConfig.h b/defaultcfg/config/FSFWConfig.h index ea724a64..ea86152c 100644 --- a/defaultcfg/config/FSFWConfig.h +++ b/defaultcfg/config/FSFWConfig.h @@ -12,10 +12,6 @@ //! Be careful, this also turns off most diagnostic prinouts! #define FSFW_REDUCED_PRINTOUT 0 -//! Default timestamp size. The default timestamp will be an eight byte CDC -//! short timestamp. -#define FSFW_MISSION_TIMESTAMP_SIZE 8 - //! Can be used to enable debugging printouts for developing the FSFW #define FSFW_DEBUGGING 0 @@ -45,6 +41,10 @@ #define FSFW_NO_C99_IO 1 namespace fsfwconfig { +//! Default timestamp size. The default timestamp will be an eight byte CDC +//! short timestamp. +static constexpr uint8_t FSFW_MISSION_TIMESTAMP_SIZE = 8; + //! Configure the allocated pool sizes for the event manager. static constexpr size_t FSFW_EVENTMGMR_MATCHTREE_NODES = 240; static constexpr size_t FSFW_EVENTMGMT_EVENTIDMATCHERS = 120;