40 lines
947 B
C++
40 lines
947 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 DEBUG_UART_MS_TIMEOUT 10
|
|
|
|
#define OBSW_ADD_LWIP_NETWORKING 1
|
|
//! Only applies if TMTC commanding is enabled.
|
|
//! Specify whether LEDs are used to display Ethernet connection status.
|
|
#define OBSW_ETHERNET_USE_LED1_LED2 0
|
|
|
|
#define OBSW_ATTEMPT_DHCP_CONN 1
|
|
|
|
#if OBSW_ATTEMPT_DHCP_CONN == 0
|
|
#define MAX_DHCP_TRIES 0
|
|
#else
|
|
#define MAX_DHCP_TRIES 3
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "events/subsystemIdRanges.h"
|
|
#include "objects/systemObjectList.h"
|
|
#include <commonConfig.h>
|
|
|
|
namespace config {
|
|
#endif
|
|
|
|
/* Add mission configuration flags here */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* FSFWCONFIG_OBSWCONFIG_H_ */
|