Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ allOf:
The path to the DDF file that describes the data exchanged in the specified domain.

connect_timeout:
$ref: ../../duration.yaml
$ref: ../duration.yaml
default: 5s
description: >-
The duration after which a failed connection attempt times out.

flag_delay:
$ref: ../../duration.yaml
$ref: ../duration.yaml
default: 0s
description: >-
Forces the local Orchestra communication to be made with flags instead of semaphores when using an external communication process.
Flags are recommended for better performance: they are faster but also more CPU-consuming.

flag_delay_tool:
$ref: ../../duration.yaml
$ref: ../duration.yaml
description: >-
Forces the local Orchestra communication to be made with flags instead of semaphores when using an external communication process.
Flags are recommended for better performance: they are faster but also more CPU-consuming.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ properties:
discriminator:
propertyName: type
mapping:
local: opal_orchestra_connection_local.yaml
remote: opal_orchestra_connection_remote.yaml
dolphin: opal_orchestra_connection_dolphin.yaml
local: ./opal_orchestra_connection_local.yaml
remote: ./opal_orchestra_connection_remote.yaml
dolphin: ./opal_orchestra_connection_dolphin.yaml
42 changes: 42 additions & 0 deletions etc/labs/lab19.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
nodes = {
udp_node = {
type = "socket"
layer = "udp"
format = "protobuf"

in = {
address = "*:12000"

signals = {
count = 5 # expected incoming sample, send back from Python client, repeats samples if values in signal is smaller
type = "float"
}
hooks = (
{
type = "print"
}
)
},
out = {
address = "127.0.0.1:12001"
}
}
signal = {
type = "signal"

signal = "mixed"
values = 5 # values per sample
limit = 3 # emit limited number of samples
}
}

paths = (
{
in = "signal"
out = "udp_node"
},
{
in = "udp_node"
}

)