Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved rmf_demos to use ros_gz_bridge instead of ros_ign_bridge #173

Merged
merged 4 commits into from
Jan 29, 2024
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 @@ -9,6 +9,6 @@
<remap from="/cmd_vel" to="/model/caddy/cmd_vel"/> <!-- remap topic name for the diff_drive ignition plugin -->
</node>
<!-- Let diff drive ignition plugin read from /model/caddy/cmd_vel topic published to by the teleop_twist_keyboard -->
<node pkg="ros_ign_bridge" exec="parameter_bridge" args="/model/caddy/cmd_vel@geometry_msgs/msg/[email protected]"></node>
<node pkg="ros_gz_bridge" exec="parameter_bridge" args="/model/caddy/cmd_vel@geometry_msgs/msg/[email protected]"></node>
</group>
</launch>
</launch>
4 changes: 2 additions & 2 deletions rmf_demos_gz/launch/simulation.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
</executable>
</group>

<!-- ros_ign bridge for simulation clock -->
<node pkg="ros_ign_bridge" exec="parameter_bridge"
<!-- ros_gz bridge for simulation clock -->
<node pkg="ros_gz_bridge" exec="parameter_bridge"
args="/clock@rosgraph_msgs/msg/Clock[ignition.msgs.Clock"
/>

Expand Down
2 changes: 1 addition & 1 deletion rmf_demos_gz/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<exec_depend>launch_xml</exec_depend>
<exec_depend>ignition-fortress</exec_depend>

<exec_depend>ros_ign_bridge</exec_depend>
<exec_depend>ros_gz_bridge</exec_depend>

<export>
<build_type>ament_cmake</build_type>
Expand Down
Loading