-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathecho.yaml
More file actions
62 lines (42 loc) · 2.33 KB
/
Copy pathecho.yaml
File metadata and controls
62 lines (42 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
################
# ECHO EXAMPLE #
################
##################################
# ALLOWED TOPICS
# Allowing FastDDS and ROS2 HelloWorld demo examples topics
allowlist:
- name: HelloWorldTopic # 1
- name: rt/chatter # 2
##################################
# PARTICIPANTS
participants:
##################################
# SIMPLE PARTICIPANT
# This participant will subscribe to topics in allowlist in specific domain and listen every message published there
- name: SimpleParticipant # 3
kind: local # 4
domain: 0 # 5
##################################
# ECHO PARTICIPANT
# This Participant will print in stdout every message received by the other Participants, as well as discovery information
- name: EchoParticipant # 6
kind: echo # 7
discovery: true # 8
data: true # 9
verbose: true # 10
##################################
# CONFIGURATION DESCRIPTION
# This configuration example configures a DDS Router to listen to every message published in domain 0 in topics
# HelloWorldTopic (from Fast DDS HelloWorld) and rt/chatter from ROS2 demo_nodes, and to print the received
# messages in stdout. Information regarding discovery events is also printed to stdout.
# 1: Allow DDS Topic Name <HelloWorldTopic> with type <HelloWorld>.
# 2: Insert new topics in order to route them.
# 3: New Participant with name <SimpleParticipant>.
# 4: Kind of SimpleParticipant: <local>.
# LAN UDP communication with default simple multicast discovery.
# 5: SimpleParticipant will use DDS Domain ID <0>.
# 6: New Participant with name <EchoParticipant>.
# 7: Kind of EchoParticipant: <echo>.
# 8: Print a trace to stdout every time an Endpoint is discovered.
# 9: Print a trace to stdout every time a new data message arrives to the router.
# 10: Display verbose information regarding received messages (receiver endpoint_guid and data payload).