File tree Expand file tree Collapse file tree
fpga/include/villas/fpga/ips Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2014-2025 Institute for Automation of Complex Power Systems, RWTH Aachen University
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ nodes = {
5+ tcp_node = {
6+ type = "socket"
7+
8+ layer = "tcp-client"
9+
10+ format = "villas.human"
11+
12+ in = {
13+ address = "tcpbin.com:4242"
14+ }
15+ out = {
16+ address = "tcpbin.com:4242"
17+ }
18+ }
19+ siggen = {
20+ type = "signal"
21+ signal = [ "sine", "pulse", "square" ]
22+ values = 3 # Values per sample
23+ rate = 1 # Sample rate
24+ }
25+ }
26+ paths = (
27+ {
28+ in = "siggen"
29+ out = "tcp_node"
30+ hooks = ( { type = "print" } )
31+ },
32+ {
33+ in = "tcp_node" # Receive loopback answer.
34+ hooks = ( { type = "print" } )
35+ }
36+ )
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ class DinoAdcFactory : DinoFactory {
131131
132132private:
133133 virtual Vlnv getCompatibleVlnv () const {
134- return Vlnv (" xilinx.com:module_ref:dinoif_fast :" );
134+ return Vlnv (" xilinx.com:module_ref:dinoif_adc :" );
135135 }
136136 Core *make () const { return new DinoAdc; };
137137};
You can’t perform that action at this time.
0 commit comments