File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed
chained_controllers/launch
individual_controller/launch Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -114,12 +114,17 @@ def generate_launch_description():
114
114
)
115
115
116
116
nodes = [
117
+ Node (
118
+ package = "robot_state_publisher" ,
119
+ executable = "robot_state_publisher" ,
120
+ output = "both" ,
121
+ parameters = [robot_description ],
122
+ ),
117
123
Node (
118
124
package = "controller_manager" ,
119
125
executable = "ros2_control_node" ,
120
126
output = "both" ,
121
127
parameters = [
122
- robot_description ,
123
128
PathJoinSubstitution (
124
129
[
125
130
FindPackageShare ("auv_control_demos" ),
@@ -128,6 +133,9 @@ def generate_launch_description():
128
133
]
129
134
),
130
135
],
136
+ remappings = [
137
+ ("/controller_manager/robot_description" , "/robot_description" ),
138
+ ],
131
139
),
132
140
* delay_thruster_spawners ,
133
141
delay_tam_controller_spawner_after_thruster_controller_spawners ,
Original file line number Diff line number Diff line change @@ -47,12 +47,17 @@ def generate_launch_description():
47
47
48
48
return LaunchDescription (
49
49
[
50
+ Node (
51
+ package = "robot_state_publisher" ,
52
+ executable = "robot_state_publisher" ,
53
+ output = "both" ,
54
+ parameters = [robot_description ],
55
+ ),
50
56
Node (
51
57
package = "controller_manager" ,
52
58
executable = "ros2_control_node" ,
53
59
output = "both" ,
54
60
parameters = [
55
- robot_description ,
56
61
PathJoinSubstitution (
57
62
[
58
63
FindPackageShare ("auv_control_demos" ),
@@ -61,6 +66,9 @@ def generate_launch_description():
61
66
]
62
67
),
63
68
],
69
+ remappings = [
70
+ ("/controller_manager/robot_description" , "/robot_description" ),
71
+ ],
64
72
),
65
73
Node (
66
74
package = "controller_manager" ,
Original file line number Diff line number Diff line change 3
3
<package format =" 3" >
4
4
<name >auv_control_demos</name >
5
5
<version >0.0.1</version >
6
- <description >Example package that includes demos for using auv_controllers in individual and chained modes</description >
6
+ <description >Example package that includes demos for using auv_controllers in individual and
7
+ chained modes</description >
7
8
8
9
<maintainer email =" mitchcol@oregonstate.edu" >Colin Mitchell</maintainer >
9
10
<maintainer email =" everardo.a.gonzalez@gmail.com" >Everardo Gonzalez</maintainer >
21
22
22
23
<buildtool_depend >ament_cmake</buildtool_depend >
23
24
25
+ <exec_depend >robot_state_publisher</exec_depend >
26
+ <exec_depend >xacro</exec_depend >
27
+
24
28
<test_depend >ament_lint_auto</test_depend >
25
29
<test_depend >ament_lint_common</test_depend >
26
30
You can’t perform that action at this time.
0 commit comments