18 lines
690 B
C
18 lines
690 B
C
#ifndef COMMON_CONFIG_COMMONCONFIG_H_
|
|
#define COMMON_CONFIG_COMMONCONFIG_H_
|
|
|
|
#define OBSW_ADD_LWGPS_TEST 0
|
|
|
|
// Use TCP instead of UDP for the TMTC bridge. This allows using the TMTC client locally
|
|
// because UDP packets are not allowed in the VPN
|
|
#define OBSW_USE_TMTC_TCP_BRIDGE 1
|
|
// This will cause the OBSW to initialize the TMTC bridge responsible for exchanging data with the
|
|
// CCSDS IP Cores.
|
|
#define OBSW_USE_CCSDS_IP_CORE 1
|
|
// Set to 1 if all telemetry should be sent to the PTME IP Core
|
|
#define OBSW_TM_TO_PTME 1
|
|
// Set to 1 if telecommands are received via the PDEC IP Core
|
|
#define OBSW_TC_FROM_PDEC 0
|
|
|
|
#endif /* COMMON_CONFIG_COMMONCONFIG_H_ */
|