Browse Source

Fix xacro var for wheel dynamics not substituting

pull/86/head
Binit Shah 2 years ago
parent
commit
4b4f56d66b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      stretch_description/urdf/stretch_main.xacro

+ 2
- 2
stretch_description/urdf/stretch_main.xacro View File

@ -100,7 +100,7 @@
link="link_right_wheel" />
<axis
xyz="0 0 -1" />
<dynamics damping="${joint_damping}" friction="${joint_friction}" spring_reference="${joint_spring_reference}" spring_stiffness="{joint_spring_stiffness}"/>
<dynamics damping="${joint_damping}" friction="${joint_friction}" spring_reference="${joint_spring_reference}" spring_stiffness="${joint_spring_stiffness}"/>
</joint>
<link
@ -156,7 +156,7 @@
link="link_left_wheel" />
<axis
xyz="0 0 -1" />
<dynamics damping="${joint_damping}" friction="${joint_friction}" spring_reference="${joint_spring_reference}" spring_stiffness="{joint_spring_stiffness}"/>
<dynamics damping="${joint_damping}" friction="${joint_friction}" spring_reference="${joint_spring_reference}" spring_stiffness="${joint_spring_stiffness}"/>
</joint>
<link name="caster_link">

Loading…
Cancel
Save