16 lines
442 B
C
16 lines
442 B
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 FSFWCONFIG_OBSWCONFIG_H_
|
||
|
#define FSFWCONFIG_OBSWCONFIG_H_
|
||
|
|
||
|
#define ADD_TEST_FOLDER 0
|
||
|
#define OBSW_ADD_TEST_CODE 0
|
||
|
|
||
|
// Define not used yet, PUS stack and TMTC tasks are always started
|
||
|
#define ADD_PUS_STACK 1
|
||
|
|
||
|
#endif /* FSFWCONFIG_OBSWCONFIG_H_ */
|