2020-09-30 17:17:01 +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.
|
|
|
|
*/
|
2020-11-20 18:10:39 +01:00
|
|
|
#ifndef FSFWCONFIG_OBSWCONFIG_H_
|
|
|
|
#define FSFWCONFIG_OBSWCONFIG_H_
|
2020-09-30 17:17:01 +02:00
|
|
|
|
2020-12-14 22:52:53 +01:00
|
|
|
#define OBSW_ADD_TEST_CODE 0
|
2020-09-30 17:17:01 +02:00
|
|
|
|
2020-12-14 22:52:53 +01:00
|
|
|
// These defines should be disabled for mission code but are useful for
|
|
|
|
// debugging.
|
2021-02-06 16:13:31 +01:00
|
|
|
#define OBSW_ENHANCED_PRINTOUT 1
|
2020-09-30 17:17:01 +02:00
|
|
|
|
2021-02-03 08:09:54 +01:00
|
|
|
#define TE0720 0
|
2021-01-23 17:22:40 +01:00
|
|
|
|
2021-02-06 16:13:31 +01:00
|
|
|
#define PDU2_DEBUG 0
|
2021-02-08 14:12:36 +01:00
|
|
|
#define PDU1_DEBUG 0
|
2021-02-06 11:57:45 +01:00
|
|
|
|
2020-12-29 01:09:59 +01:00
|
|
|
#include "OBSWVersion.h"
|
|
|
|
|
|
|
|
#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-11-20 18:10:39 +01:00
|
|
|
#endif /* FSFWCONFIG_OBSWCONFIG_H_ */
|