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_
|
|
|
|
|
2020-12-14 22:52:53 +01:00
|
|
|
#define OBSW_ADD_TEST_CODE 0
|
2020-09-30 20:52:51 +02:00
|
|
|
|
2020-12-14 22:52:53 +01:00
|
|
|
// These defines should be disabled for mission code but are useful for
|
|
|
|
// debugging.
|
|
|
|
#define OBSW_ENHANCED_PRINTOUT 1
|
2020-09-30 20:52:51 +02:00
|
|
|
|
|
|
|
#endif /* CONFIG_OBSWCONFIG_H_ */
|