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

F#131 rebasing 132 #157

Closed
wants to merge 2 commits into from
Closed
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
5 changes: 3 additions & 2 deletions sr_edc_launch/sr_edc.launch
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!-- Set to 0 if we don't want to run calibration controllers (e.g. for the muscle hand) -->
<arg name="calibration_controllers" default="1"/>
<!-- Xacro file containing the robot description we want to load -->
<arg name="robot_description" default="$(find sr_description)/robots/shadowhand_motor.urdf.xacro"/>
<arg name="robot_description" default="'$(find sr_description)/robots/shadowhand_motor.urdf.xacro'"/>
<!-- The control mode PWM (true) or torque (false) -->
<arg name="pwm_control" default="$(optenv PWM_CONTROL 1)"/>
<!-- use ns or not -->
Expand All @@ -24,7 +24,8 @@
<param name="/use_sim_time" value="false"/>

<!-- Loads the robot description from the file passed as an argument -->
<param name="robot_description" command="$(find xacro)/xacro.py '$(arg robot_description)' prefix:=$(arg hand_id)_ initial_z:=$(arg initial_z)"/>
<param name="robot_description" command="$(find xacro)/xacro.py $(arg robot_description) prefix:=$(arg hand_id)_ initial_z:=$(arg initial_z)"/>


<param name="/hand/mapping/$(arg hand_serial)" value="$(arg hand_id)"/>
<param name="/hand/joint_prefix/$(arg hand_serial)" value="$(arg hand_id)_"/>
Expand Down
4 changes: 2 additions & 2 deletions sr_edc_launch/sr_edc_bimanual.launch
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!-- Set to 0 if we don't want to run calibration controllers (e.g. for the muscle hand) -->
<arg name="calibration_controllers" default="1"/>
<!-- Xacro file containing the robot description we want to load -->
<arg name="robot_description" default="$(find sr_description)/robots/bimanual_shadowhand_motor.urdf.xacro"/>
<arg name="robot_description" default="'$(find sr_description)/robots/bimanual_shadowhand_motor.urdf.xacro'"/>
<!-- The control mode PWM (true) or torque (false) -->
<arg name="pwm_control" default="$(optenv PWM_CONTROL 0)"/>

Expand All @@ -32,7 +32,7 @@
<param name="/use_sim_time" value="false"/>

<!-- Loads the robot description from the file passed as an argument -->
<param name="robot_description" command="$(find xacro)/xacro.py '$(arg robot_description)'"/>
<param name="robot_description" command="$(find xacro)/xacro.py $(arg robot_description)" />

<!-- Load parameters for the right hand -->
<include file="$(find sr_edc_launch)/load_hand_parameters.xml">
Expand Down