Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change tpc server from tcpbin.com to VILLASnode's tcp server #872

Merged
merged 1 commit into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions etc/labs/lab20-server.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# SPDX-FileCopyrightText: 2014-2025 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0

nodes = {
tcp_node = {
type = "socket"

layer = "tcp-server"

format = "villas.human"

in = {
address = "127.0.0.1:12000"
},
out = {
address = "127.0.0.1:12000"
}
}
}
paths = (
{
in = "tcp_node"
out = "tcp_node"
hooks = ( { type = "print" } )
}
)
6 changes: 3 additions & 3 deletions etc/labs/lab20.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ nodes = {
format = "villas.human"

in = {
address = "tcpbin.com:4242"
address = "127.0.0.1:12000"
}
out = {
address = "tcpbin.com:4242"
address = "127.0.0.1:12000"
}
}
siggen = {
type = "signal"
signal = [ "sine", "pulse", "square" ]
values = 3 # Values per sample
rate = 1 # Sample rate
rate = 10 # Sample rate
}
}
paths = (
Expand Down