eive-obsw/bsp_hosted/fsfwconfig/OBSWConfig.h

33 lines
692 B
C
Raw Normal View History

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_
#include "commonConfig.h"
#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. */
#define OBSW_VEBOSE_LEVEL 1
2020-09-30 20:52:51 +02:00
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_ */