mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
17 lines
321 B
C
17 lines
321 B
C
|
/** Node type: GTFPGA (Xilinx ML507)
|
||
|
*
|
||
|
* This file implements the gtfpga subtype for nodes.
|
||
|
*
|
||
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
||
|
* @copyright 2014, Institute for Automation of Complex Power Systems, EONERC
|
||
|
*/
|
||
|
|
||
|
#ifndef _GTFPGA_H_
|
||
|
#define _GTFPGA_H_
|
||
|
|
||
|
struct gtfpga {
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* _GTFPGA_H_ */
|