mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
78 lines
2.4 KiB
C
78 lines
2.4 KiB
C
/** Static server configuration
|
|
*
|
|
* This file contains some compiled-in settings.
|
|
* This settings are not part of the configuration file.
|
|
*
|
|
* @file
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2014-2015, Institute for Automation of Complex Power Systems, EONERC
|
|
* This file is part of S2SS. All Rights Reserved. Proprietary and confidential.
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
*********************************************************************************/
|
|
|
|
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
#ifndef _GIT_REV
|
|
#define _GIT_REV "nogit"
|
|
#endif
|
|
|
|
/** The version number of the s2ss server */
|
|
#define VERSION "v0.5-" _GIT_REV
|
|
|
|
/** Maximum number of float values in a message */
|
|
#define MAX_VALUES 64
|
|
|
|
/** Maximum number of messages in the circular history buffer */
|
|
#define DEFAULT_POOLSIZE 32
|
|
|
|
/** Width of log output in characters */
|
|
#define LOG_WIDTH 74
|
|
|
|
/** Socket priority */
|
|
#define SOCKET_PRIO 7
|
|
|
|
/* Protocol numbers */
|
|
#define IPPROTO_S2SS 137
|
|
#define ETH_P_S2SS 0xBABE
|
|
|
|
#define SYSFS_PATH "/sys"
|
|
#define PROCFS_PATH "/proc"
|
|
|
|
/* Checks */
|
|
#define KERNEL_VERSION_MAJ 3
|
|
#define KERNEL_VERSION_MIN 4
|
|
|
|
#ifndef LICENSE_VALID
|
|
#define LICENSE_VALID 0
|
|
#endif
|
|
#define LICENSE_CHECKS \
|
|
{ { "/sys/class/dmi/id/product_uuid", "5002E503-4904-EB05-7406-0C0700080009" }, \
|
|
{ "/sys/class/net/eth0/address" , "50:e5:49:eb:74:0c" }, \
|
|
{ "/etc/machine-id", "0d8399d0216314f083b9ed2053a354a8" }, \
|
|
{ "/dev/sda2", "\x53\xf6\xb5\xeb\x8b\x16\x46\xdc\x8d\x8f\x5b\x70\xb8\xc9\x1a\x2a", 0x468 } }
|
|
|
|
/** Coefficients for simple FIR-LowPass:
|
|
* F_s = 1kHz, F_pass = 100 Hz, F_block = 300
|
|
*
|
|
* Tip: Use MATLAB's filter design tool and export coefficients
|
|
* with the integrated C-Header export
|
|
*/
|
|
#define HOOK_FIR_COEFFS { -0.003658148158728, -0.008882653268281, 0.008001024183003, \
|
|
0.08090485991761, 0.2035239551043, 0.3040703593515, \
|
|
0.3040703593515, 0.2035239551043, 0.08090485991761, \
|
|
0.008001024183003, -0.008882653268281,-0.003658148158728 }
|
|
|
|
/** Global configuration */
|
|
struct settings {
|
|
/** Process priority (lower is better) */
|
|
int priority;
|
|
/** Process affinity of the server and all created threads */
|
|
int affinity;
|
|
/** Debug log level */
|
|
int debug;
|
|
/** Interval for path statistics. Set to 0 to disable themo disable them. */
|
|
double stats;
|
|
};
|
|
|
|
#endif /* _CONFIG_H_ */
|