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

[baxter_moveit_config] add gripper option for robot_description #57

Merged
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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ notifications:
- [email protected]
env:
matrix:
- ROS_DISTRO=kinetic ROS_REPO=ros UPSTREAM_WORKSPACE=https://raw.githubusercontent.com/ros-planning/moveit/kinetic-devel/moveit.rosinstall
- ROS_DISTRO=kinetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=https://raw.githubusercontent.com/ros-planning/moveit/kinetic-devel/moveit.rosinstall
- ROS_DISTRO=kinetic ROS_REPO=ros BEFORE_SCRIPT='$CI_SOURCE_PATH/.travis_before_script.bash' UPSTREAM_WORKSPACE=https://raw.githubusercontent.com/ros-planning/moveit/kinetic-devel/moveit.rosinstall
- ROS_DISTRO=kinetic ROS_REPO=ros-shadow-fixed BEFORE_SCRIPT='$CI_SOURCE_PATH/.travis_before_script.bash' UPSTREAM_WORKSPACE=https://raw.githubusercontent.com/ros-planning/moveit/kinetic-devel/moveit.rosinstall
before_script:
- git clone -q https://github.com/ros-planning/moveit_ci.git .moveit_ci
script:
- source .moveit_ci/travis.sh
- source .moveit_ci/travis.sh
5 changes: 5 additions & 0 deletions .travis_before_script.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

wstool set baxter_common --git https://github.com/RethinkRobotics/baxter_common.git -v master -y
wstool update baxter_common
cat .rosinstall
4 changes: 3 additions & 1 deletion baxter/baxter_moveit_config/launch/planning_context.launch
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@

<!-- Load universal robotic description format (URDF) -->
<param if="$(arg load_robot_description)" name="$(arg robot_description)"
command="$(find xacro)/xacro --inorder $(find baxter_description)/urdf/baxter.urdf.xacro"/>
command="$(find xacro)/xacro --inorder $(find baxter_description)/urdf/baxter.urdf.xacro
left_electric_gripper:=$(arg left_electric_gripper)
right_electric_gripper:=$(arg right_electric_gripper)"/>

<!-- The semantic description that corresponds to the URDF -->
<param name="$(arg robot_description)_semantic"
Expand Down