Robin Mueller
d7ff74b6bd
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
/**
|
|
* @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_
|
|
|
|
#include "commonConfig.h"
|
|
|
|
#define OBSW_PRINT_MISSED_DEADLINES 1
|
|
|
|
#define OBSW_ADD_TEST_CODE 1
|
|
|
|
/* These defines should be disabled for mission code but are useful for
|
|
debugging. */
|
|
#define OBSW_VEBOSE_LEVEL 1
|
|
|
|
#define OBSW_ADD_CCSDS_IP_CORES 0
|
|
// 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
|
|
|
|
#define OBSW_SYRLINKS_SIMULATED 0
|
|
|
|
#define OBSW_INITIALIZE_SWITCHES 0
|
|
|
|
#define OBSW_TCP_SERVER_WIRETAPPING 0
|
|
|
|
#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
|
|
|
|
#endif /* CONFIG_OBSWCONFIG_H_ */
|