2019-03-22 13:49:07 +01:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2019-03-26 14:02:12 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2023-08-31 11:25:01 +02:00
|
|
|
|
2019-03-22 13:49:07 +01:00
|
|
|
paths = (
|
2024-02-29 21:36:38 +01:00
|
|
|
{
|
2024-04-09 14:17:35 +02:00
|
|
|
# Enable this path (default: true)
|
|
|
|
enabled = true,
|
2019-03-22 13:49:07 +01:00
|
|
|
|
2024-04-09 14:17:35 +02:00
|
|
|
# Setup a path in the reverse direction as well (default: false)
|
|
|
|
reverse = true,
|
2019-03-22 13:49:07 +01:00
|
|
|
|
2024-04-09 14:17:35 +02:00
|
|
|
# Name of the node we receive messages from (see node dictionary)
|
|
|
|
in = "udp_node",
|
|
|
|
|
|
|
|
# Name of the node we send messages to
|
|
|
|
out = "ethernet_node",
|
|
|
|
|
|
|
|
# A rate at which this path will be triggered if no input node receives new data
|
|
|
|
rate = 10.0
|
2019-03-22 13:49:07 +01:00
|
|
|
|
2024-02-29 21:36:38 +01:00
|
|
|
queuelen = 128,
|
|
|
|
|
2024-04-09 14:17:35 +02:00
|
|
|
# When this path should be triggered
|
|
|
|
# - "all": After all masked input nodes received new data
|
|
|
|
# - "any": After any of the masked input nodes received new data
|
|
|
|
mode = "all",
|
|
|
|
|
|
|
|
# A list of input nodes which will trigger the path
|
|
|
|
mask = [ "udp_node" ],
|
2024-02-29 21:36:38 +01:00
|
|
|
}
|
2019-03-22 13:49:07 +01:00
|
|
|
)
|