mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
26 lines
584 B
C
26 lines
584 B
C
/** Compile-time configuration.
|
|
*
|
|
* @file
|
|
* @author Steffen Vogel <post@steffenvogel.de>
|
|
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license Apache 2.0
|
|
*********************************************************************************/
|
|
|
|
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
#define PROGNAME "VILLASnode-OPAL-UDP"
|
|
#define VERSION "0.7"
|
|
|
|
#define MAX_VALUES 64
|
|
|
|
/* List of protocols */
|
|
#define VILLAS 1
|
|
#define GTNET_SKT 2
|
|
|
|
/* Default protocol */
|
|
#ifndef PROTOCOL
|
|
#define PROTOCOL VILLAS
|
|
#endif /* PROTOCOL */
|
|
|
|
#endif /* _CONFIG_H_ */
|