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

[jsk_fetch_startup] add robot_pose_publisher in fetch_bringup.launch #1280

Merged
merged 9 commits into from
Jul 19, 2021
7 changes: 7 additions & 0 deletions .travis.rosinstall.melodic
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,10 @@
local-name: fetchrobotics/fetch_ros
uri: https://github.com/fetchrobotics/fetch_ros.git
version: ba4bafdb802e474487d1e0d893aa25c9535dc55f
# robot_pose_publisher is not released in melodic
# https://github.com/GT-RAIL/robot_pose_publisher/issues/8
# robot_pose_publisher is needed for rwt_nav
- git:
local-name: GT-RAIL/robot_pose_publisher
uri: https://github.com/GT-RAIL/robot_pose_publisher.git
version: 0.2.4
9 changes: 9 additions & 0 deletions jsk_fetch_robot/jsk_fetch_startup/launch/fetch_bringup.launch
Original file line number Diff line number Diff line change
Expand Up @@ -254,4 +254,13 @@
<remap from="~input" to="/odom" />
<remap from="~output" to="/odom_corrected" />
</node>

<!-- robot_pose_publisher for rwt_nav -->
<node name="robot_pose_publisher" pkg="robot_pose_publisher" type="robot_pose_publisher">
<rosparam>
map_frame: /map
base_frame: /base_link
</rosparam>
</node>

</launch>
3 changes: 3 additions & 0 deletions jsk_fetch_robot/jsk_fetch_startup/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
<run_depend>julius_ros</run_depend>
<run_depend version_gte="2.1.13">respeaker_ros</run_depend>

<!-- for rwt_nav -->
<run_depend>robot_pose_publisher</run_depend>

<test_depend>rostest</test_depend>

<export>
Expand Down