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:
parent
d254e4c4bb
commit
34d9ac1a00
1 changed files with 8 additions and 8 deletions
|
@ -3,15 +3,15 @@
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
tcp_node = {
|
tcp_node = {
|
||||||
type = "socket",
|
type = "socket"
|
||||||
|
|
||||||
layer = "tcp-client",
|
layer = "tcp-client"
|
||||||
|
|
||||||
format = "villas.human",
|
format = "villas.human"
|
||||||
|
|
||||||
in = {
|
in = {
|
||||||
address = "tcpbin.com:4242"
|
address = "tcpbin.com:4242"
|
||||||
},
|
}
|
||||||
out = {
|
out = {
|
||||||
address = "tcpbin.com:4242"
|
address = "tcpbin.com:4242"
|
||||||
}
|
}
|
||||||
|
@ -19,18 +19,18 @@ nodes = {
|
||||||
siggen = {
|
siggen = {
|
||||||
type = "signal"
|
type = "signal"
|
||||||
signal = [ "sine", "pulse", "square" ]
|
signal = [ "sine", "pulse", "square" ]
|
||||||
values = 3, # value per sample
|
values = 3 # Values per sample
|
||||||
rate = 1, # rate of sample
|
rate = 1 # Sample rate
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
paths = (
|
paths = (
|
||||||
{
|
{
|
||||||
in = "siggen"
|
in = "siggen"
|
||||||
out = "tcp_node",
|
out = "tcp_node"
|
||||||
hooks = ( { type = "print" } )
|
hooks = ( { type = "print" } )
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
in = "tcp_node", # Receive loopback answer.
|
in = "tcp_node" # Receive loopback answer.
|
||||||
hooks = ( { type = "print" } )
|
hooks = ( { type = "print" } )
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue