fsfw/misc/defaultcfg/fsfwconfig/FSFWConfig.h

80 lines
2.9 KiB
C
Raw Normal View History

2020-10-20 17:38:41 +02:00
#ifndef CONFIG_FSFWCONFIG_H_
#define CONFIG_FSFWCONFIG_H_
2020-10-29 15:23:14 +01:00
#include <cstddef>
2020-12-01 13:46:29 +01:00
#include <cstdint>
2020-10-20 17:38:41 +02:00
2022-09-05 15:36:12 +02:00
// It is assumed the user has a subsystem and class ID list in some user header files.
// #include "events/subsystemIdRanges.h"
// #include "returnvalues/classIds.h"
2021-01-03 01:02:07 +01:00
//! Used to determine whether C++ ostreams are used which can increase
//! the binary size significantly. If this is disabled,
//! the C stdio functions can be used alternatively
2021-06-13 16:29:13 +02:00
#define FSFW_CPP_OSTREAM_ENABLED 1
2020-10-20 17:38:41 +02:00
2021-01-13 12:56:55 +01:00
//! More FSFW related printouts depending on level. Useful for development.
2021-06-13 16:29:13 +02:00
#define FSFW_VERBOSE_LEVEL 1
2020-10-20 17:38:41 +02:00
2021-01-03 01:02:07 +01:00
//! Can be used to completely disable printouts, even the C stdio ones.
2021-01-13 12:56:55 +01:00
#if FSFW_CPP_OSTREAM_ENABLED == 0 && FSFW_VERBOSE_LEVEL == 0
2021-06-13 16:29:13 +02:00
#define FSFW_DISABLE_PRINTOUT 0
2021-01-03 01:02:07 +01:00
#endif
2021-06-13 16:29:13 +02:00
#define FSFW_USE_PUS_C_TELEMETRY 1
#define FSFW_USE_PUS_C_TELECOMMANDS 1
2021-04-12 20:40:41 +02:00
//! Can be used to disable the ANSI color sequences for C stdio.
2021-06-13 16:29:13 +02:00
#define FSFW_COLORED_OUTPUT 1
2020-10-29 17:09:43 +01:00
//! If FSFW_OBJ_EVENT_TRANSLATION is set to one,
2020-10-20 17:38:41 +02:00
//! additional output which requires the translation files translateObjects
2020-10-29 17:09:43 +01:00
//! and translateEvents (and their compiled source files)
2021-06-13 16:29:13 +02:00
#define FSFW_OBJ_EVENT_TRANSLATION 0
2020-10-29 17:09:43 +01:00
#if FSFW_OBJ_EVENT_TRANSLATION == 1
2020-10-20 17:38:41 +02:00
//! Specify whether info events are printed too.
2021-06-13 16:29:13 +02:00
#define FSFW_DEBUG_INFO 1
2020-12-22 12:45:51 +01:00
#include "objects/translateObjects.h"
#include "events/translateEvents.h"
2020-10-20 17:38:41 +02:00
#else
#endif
//! When using the newlib nano library, C99 support for stdio facilities
//! will not be provided. This define should be set to 1 if this is the case.
2021-06-13 16:29:13 +02:00
#define FSFW_NO_C99_IO 1
2020-12-01 13:46:29 +01:00
//! Specify whether a special mode store is used for Subsystem components.
2021-06-13 16:29:13 +02:00
#define FSFW_USE_MODESTORE 0
2020-10-20 17:38:41 +02:00
2021-04-20 15:31:03 +02:00
//! Defines if the real time scheduler for linux should be used.
//! If set to 0, this will also disable priority settings for linux
//! as most systems will not allow to set nice values without privileges
//! For embedded linux system set this to 1.
//! If set to 1 the binary needs "cap_sys_nice=eip" privileges to run
2021-06-13 16:29:13 +02:00
#define FSFW_USE_REALTIME_FOR_LINUX 1
2021-04-20 15:31:03 +02:00
2020-10-29 15:23:14 +01:00
namespace fsfwconfig {
2021-04-20 18:35:11 +02:00
//! Default timestamp size. The default timestamp will be an seven byte CDC short timestamp.
2021-04-13 01:24:26 +02:00
static constexpr uint8_t FSFW_MISSION_TIMESTAMP_SIZE = 7;
2020-11-02 14:53:44 +01:00
2020-10-29 15:23:14 +01:00
//! 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;
static constexpr size_t FSFW_EVENTMGMR_RANGEMATCHERS = 120;
2020-12-22 12:45:51 +01:00
//! Defines the FIFO depth of each commanding service base which
//! also determines how many commands a CSB service can handle in one cycle
2021-04-20 15:04:42 +02:00
//! simultaneously. This will increase the required RAM for
2020-12-22 12:45:51 +01:00
//! each CSB service !
static constexpr uint8_t FSFW_CSB_FIFO_DEPTH = 6;
2021-01-03 01:02:07 +01:00
static constexpr size_t FSFW_PRINT_BUFFER_SIZE = 124;
2021-06-14 15:14:57 +02:00
static constexpr size_t FSFW_MAX_TM_PACKET_SIZE = 2048;
2020-10-29 15:23:14 +01:00
}
2020-10-20 17:38:41 +02:00
#endif /* CONFIG_FSFWCONFIG_H_ */