2021-06-08 13:36:08 +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 FSFWCONFIG_OBSWCONFIG_H_
|
|
|
|
#define FSFWCONFIG_OBSWCONFIG_H_
|
|
|
|
|
|
|
|
#include <commonConfig.h>
|
|
|
|
|
2021-09-28 16:04:16 +02:00
|
|
|
#define OBSW_TASK_PERIODIC_EVENT 0
|
|
|
|
// Use a TCP server instead of a UDP server for TMTC reception
|
|
|
|
#define OBSW_USE_TCP_SERVER 0
|
2021-06-30 10:00:20 +02:00
|
|
|
|
2021-06-08 13:36:08 +02:00
|
|
|
#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_ */
|