37 lines
1.8 KiB
XML
37 lines
1.8 KiB
XML
<?xml version="1.0" ?>
|
|
<robot xmlns:xacro="http://www.ros.org/wiki/xacro">
|
|
<xacro:macro name="quadruped_transmission" params="leg ">
|
|
<transmission name="${leg}_hip_joint_trans">
|
|
<type>transmission_interface/SimpleTransmission</type>
|
|
<joint name="motor_${leg}_hip">
|
|
<hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>
|
|
</joint>
|
|
<actuator name="${leg}_hip_joint_motor">
|
|
<hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>
|
|
<mechanicalReduction>1</mechanicalReduction>
|
|
</actuator>
|
|
</transmission>
|
|
|
|
<transmission name="${leg}_upper_leg_joint_trans">
|
|
<type>transmission_interface/SimpleTransmission</type>
|
|
<joint name="motor_${leg}_lower_leg">
|
|
<hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>
|
|
</joint>
|
|
<actuator name="${leg}_upper_leg_joint_motor">
|
|
<hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>
|
|
<mechanicalReduction>1</mechanicalReduction>
|
|
</actuator>
|
|
</transmission>
|
|
|
|
<transmission name="${leg}_lower_leg_joint_trans">
|
|
<type>transmission_interface/SimpleTransmission</type>
|
|
<joint name="motor_${leg}_upper_leg">
|
|
<hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>
|
|
</joint>
|
|
<actuator name="${leg}_lower_joint_motor">
|
|
<hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>
|
|
<mechanicalReduction>1</mechanicalReduction>
|
|
</actuator>
|
|
</transmission>
|
|
</xacro:macro>
|
|
</robot> |