-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
381 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 0 additions & 25 deletions
25
jsk_arc2017_baxter/launch/setup/include/baxterlgv7_planning_context.launch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
..._baxter/launch/setup/include/moveit/baxterlgv7/baxterlgv7_trajectory_execution.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<launch> | ||
|
||
<!-- This file makes it easy to include the settings for trajectory execution --> | ||
|
||
<!-- Flag indicating whether MoveIt! is allowed to load/unload or switch controllers --> | ||
<arg name="moveit_manage_controllers" default="true"/> | ||
<param name="moveit_manage_controllers" value="$(arg moveit_manage_controllers)"/> | ||
|
||
<!-- When determining the expected duration of a trajectory, this multiplicative factor is applied to get the allowed duration of execution --> | ||
<param name="trajectory_execution/allowed_execution_duration_scaling" value="1.2"/> <!-- default 1.2 --> | ||
<!-- Allow more than the expected execution time before triggering a trajectory cancel (applied after scaling) --> | ||
<param name="trajectory_execution/allowed_goal_duration_margin" value="0.5"/> <!-- default 0.5 --> | ||
|
||
<!-- Load the robot specific controller manager; this sets the moveit_controller_manager ROS parameter --> | ||
<arg name="moveit_controller_manager" default="baxterlgv7" /> | ||
<include file="$(find jsk_arc2017_baxter)/launch/setup/include/moveit/common/moveit_controller_manager.launch.xml"> | ||
<arg name="robot" value="$(arg moveit_controller_manager)"/> | ||
</include> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 6 additions & 3 deletions
9
...nch/setup/include/planning_context.launch → ...ude/moveit/common/planning_context.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions
10
...obots/moveit_config/baxterlgv7.srdf.xacro → ...t_config/baxterlgv7/baxterlgv7.srdf.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" ?> | ||
<robot name="baxter" xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
<robot name="baxterlgv7" xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
<xacro:arg name="left_tip_name" default="left_gripper_pad_with_base"/> | ||
<xacro:arg name="right_tip_name" default="right_gripper_pad_with_base"/> | ||
<xacro:include filename="$(find jsk_arc2017_baxter)/robots/moveit_config/baxter_base.srdf.xacro" /> | ||
<xacro:baxter_base left_tip_name="$(arg left_tip_name)" right_tip_name="$(arg right_tip_name)"/> | ||
<xacro:include filename="$(find jsk_arc2017_baxter)/robots/moveit_config/baxterlgv7/baxterlgv7_base.srdf.xacro" /> | ||
<xacro:baxterlgv7_base left_tip_name="$(arg left_tip_name)" right_tip_name="$(arg right_tip_name)"/> | ||
<!--Left End Effector Collisions--> | ||
<xacro:include filename="$(find jsk_arc2017_baxter)/robots/moveit_config/gripper_v7.srdf.xacro" /> | ||
<xacro:include filename="$(find jsk_arc2017_baxter)/robots/moveit_config/common/gripper_v7.srdf.xacro" /> | ||
<xacro:vacuum_gripper side="left"/> | ||
<!--Right End Effector Collisions--> | ||
<xacro:include filename="$(find jsk_arc2017_baxter)/robots/moveit_config/gripper_v6.srdf.xacro" /> | ||
<xacro:include filename="$(find jsk_arc2017_baxter)/robots/moveit_config/common/gripper_v6.srdf.xacro" /> | ||
<xacro:vacuum_gripper side="right"/> | ||
</robot> |
Oops, something went wrong.