mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@234 8ec27952-4edc-4aab-86aa-e87bb2611832
27 lines
653 B
C
27 lines
653 B
C
/** Static server configuration
|
|
*
|
|
* This file contains some compiled-in settings.
|
|
* This settings are not part of the configuration file.
|
|
*
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2014, Institute for Automation of Complex Power Systems, EONERC
|
|
* @file
|
|
*/
|
|
|
|
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
/** The version number of the s2ss server */
|
|
#define VERSION "v0.4" __GIT_REV__
|
|
|
|
/** Maximum number of double values in a struct msg */
|
|
#define MAX_VALUES 64
|
|
|
|
/** Socket priority */
|
|
#define SOCKET_PRIO 7
|
|
|
|
/* Some parameters for histogram statistics */
|
|
#define HIST_HEIGHT 50
|
|
#define HIST_SEQ 17
|
|
|
|
#endif /* _CONFIG_H_ */
|