1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

fix: Remove trailing commas

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2025-02-20 18:57:16 +01:00
parent d254e4c4bb
commit 34d9ac1a00

View file

@ -3,15 +3,15 @@
nodes = {
tcp_node = {
type = "socket",
type = "socket"
layer = "tcp-client",
layer = "tcp-client"
format = "villas.human",
format = "villas.human"
in = {
address = "tcpbin.com:4242"
},
}
out = {
address = "tcpbin.com:4242"
}
@ -19,18 +19,18 @@ nodes = {
siggen = {
type = "signal"
signal = [ "sine", "pulse", "square" ]
values = 3, # value per sample
rate = 1, # rate of sample
values = 3 # Values per sample
rate = 1 # Sample rate
}
}
paths = (
{
in = "siggen"
out = "tcp_node",
out = "tcp_node"
hooks = ( { type = "print" } )
},
{
in = "tcp_node", # Receive loopback answer.
in = "tcp_node" # Receive loopback answer.
hooks = ( { type = "print" } )
}
)