2020-09-30 20:52:51 +02:00
|
|
|
/**
|
|
|
|
* @brief This file can be used to add preprocessor define for conditional
|
|
|
|
* code inclusion exclusion or various other project constants and
|
|
|
|
* properties in one place.
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_OBSWCONFIG_H_
|
|
|
|
#define CONFIG_OBSWCONFIG_H_
|
|
|
|
|
2021-03-04 18:29:28 +01:00
|
|
|
#include "commonConfig.h"
|
|
|
|
|
2022-04-26 10:37:25 +02:00
|
|
|
#define OBSW_PRINT_MISSED_DEADLINES 1
|
|
|
|
|
|
|
|
#define OBSW_ADD_TEST_CODE 1
|
2020-09-30 20:52:51 +02:00
|
|
|
|
2021-02-14 13:07:05 +01:00
|
|
|
/* These defines should be disabled for mission code but are useful for
|
|
|
|
debugging. */
|
2022-04-26 10:37:25 +02:00
|
|
|
#define OBSW_VEBOSE_LEVEL 1
|
2020-09-30 20:52:51 +02:00
|
|
|
|
2022-10-26 16:11:34 +02:00
|
|
|
#define OBSW_ADD_CCSDS_IP_CORES 0
|
2021-10-11 19:34:34 +02:00
|
|
|
// Set to 1 if all telemetry should be sent to the PTME IP Core
|
|
|
|
#define OBSW_TM_TO_PTME 0
|
|
|
|
// Set to 1 if telecommands are received via the PDEC IP Core
|
|
|
|
#define OBSW_TC_FROM_PDEC 0
|
|
|
|
|
2022-04-26 10:37:25 +02:00
|
|
|
#define OBSW_SYRLINKS_SIMULATED 0
|
|
|
|
|
|
|
|
#define OBSW_INITIALIZE_SWITCHES 0
|
|
|
|
|
|
|
|
#define OBSW_TCP_SERVER_WIRETAPPING 0
|
|
|
|
|
2020-12-29 01:09:59 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
#include "objects/systemObjectList.h"
|
|
|
|
#include "events/subsystemIdRanges.h"
|
|
|
|
#include "returnvalues/classIds.h"
|
|
|
|
|
|
|
|
namespace config {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Add mission configuration flags here */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-09-30 20:52:51 +02:00
|
|
|
#endif /* CONFIG_OBSWCONFIG_H_ */
|