1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/clients/opal-rt/rtlab-asyncip/models/send_receive/include/config.h
Steffen Vogel b4c3ef8ac0 fix(opal): Restructure OPAL-RT clients
Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
2024-10-31 13:29:31 +01:00

25 lines
522 B
C

/* Compile-time configuration.
*
* Author: Steffen Vogel <post@steffenvogel.de>
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
* SPDX-License-Identifier: 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_