Robin Mueller
0a923a38a6
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
30 lines
653 B
C
30 lines
653 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_
|
|
|
|
#include <commonConfig.h>
|
|
|
|
#define OBSW_TASK_PERIODIC_EVENT 0
|
|
// Use a TCP server instead of a UDP server for TMTC reception
|
|
#define OBSW_USE_TCP_SERVER 1
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "events/subsystemIdRanges.h"
|
|
#include "objects/systemObjectList.h"
|
|
|
|
namespace config {
|
|
#endif
|
|
|
|
/* Add mission configuration flags here */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* FSFWCONFIG_OBSWCONFIG_H_ */
|