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

fixed indention of example config

This commit is contained in:
Steffen Vogel 2015-05-19 16:56:19 +02:00
parent 489d738b25
commit 77b47ad8f3

View file

@ -99,29 +99,29 @@ nodes = {
paths = (
{
enabled = true, # Enable this path (default: true)
reverse = true, # Setup a path in the reverse direction as well (default: false)
enabled = true, # Enable this path (default: true)
reverse = true, # Setup a path in the reverse direction as well (default: false)
in = "acs", # Name of the node we receive messages from (see node dictionary)
out = "sintef", # Name of the node we send messages to.
in = "acs", # Name of the node we receive messages from (see node dictionary)
out = "sintef", # Name of the node we send messages to.
rate = 100, # Send message over this path with a fixed (constant) rate (default: 0).
# Setting this value to 0 will disable this feature.
rate = 100, # Send message over this path with a fixed (constant) rate (default: 0).
# Setting this value to 0 will disable this feature.
hook = "print", # Register custom hook funktion (see src/hooks.c)
hook = "print", # Register custom hook funktion (see src/hooks.c)
poolsize = 30 # The amount of samples which are kept in a circular buffer.
# This number must be larger than the 'combine' settings of all
# associated input and output nodes!
poolsize = 30 # The amount of samples which are kept in a circular buffer.
# This number must be larger than the 'combine' settings of all
# associated input and output nodes!
},
{
enabled = false,
reverse = false,
in = "opal_node", # There's only a single source node allowed!
out = ["udp_node", "tcp_node"], # Multiple destination nodes are supported too.
in = "opal_node", # There's only a single source node allowed!
out = [ "udp_node", "tcp_node" ], # Multiple destination nodes are supported too.
hook = [ "print", "decimate" ] # Same is true for hooks.
# Multipe hook functions are executed in the order they are specified here.
hook = [ "print", "decimate" ] # Same is true for hooks.
# Multipe hook functions are executed in the order they are specified here.
}
);