Skip to content

Commit

Permalink
Added a missing robot description argument: "moveit_active" (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmrad authored Nov 6, 2024
1 parent 5e9067c commit 535d06c
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 10 deletions.
3 changes: 2 additions & 1 deletion kortex_description/arms/gen3/6dof/urdf/gen3_macro.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
isaac_joint_commands:=/isaac_joint_commands
isaac_joint_states:=/isaac_joint_states
use_external_cable:=false
initial_positions:=${dict(joint_1=0.0,joint_2=0.0,joint_3=0.0,joint_4=0.0,joint_5=0.0,joint_6=0.0)}" >
initial_positions:=${dict(joint_1=0.0,joint_2=0.0,joint_3=0.0,joint_4=0.0,joint_5=0.0,joint_6=0.0)}
moveit_active:=false">

<!-- ros2 control include -->
<xacro:include filename="$(find kortex_description)/arms/gen3/${dof}dof/urdf/kortex.ros2_control.xacro" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
connection_inactivity_timeout_ms
gripper_joint_name
gripper_max_velocity:=100.0
gripper_max_force:=100.0">
gripper_max_force:=100.0
moveit_active:=false">

<ros2_control name="${name}" type="system">
<hardware>
Expand Down
3 changes: 2 additions & 1 deletion kortex_description/arms/gen3/7dof/urdf/gen3_macro.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
isaac_joint_commands:=/isaac_joint_commands
isaac_joint_states:=/isaac_joint_states
use_external_cable:=false
initial_positions:=${dict(joint_1=0.0,joint_2=0.0,joint_3=0.0,joint_4=0.0,joint_5=0.0,joint_6=0.0,joint_7=0.0)}" >
initial_positions:=${dict(joint_1=0.0,joint_2=0.0,joint_3=0.0,joint_4=0.0,joint_5=0.0,joint_6=0.0,joint_7=0.0)}
moveit_active:=false">

<!-- ros2 control include -->
<xacro:include filename="$(find kortex_description)/arms/gen3/${dof}dof/urdf/kortex.ros2_control.xacro" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
connection_inactivity_timeout_ms
gripper_joint_name
gripper_max_velocity:=100.0
gripper_max_force:=100.0">
gripper_max_force:=100.0
moveit_active:=false">

<ros2_control name="${name}" type="system">
<hardware>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
isaac_joint_states:=/isaac_joint_states
use_external_cable:=false
initial_positions:=${dict(joint_1=0.0,joint_2=0.0,joint_3=0.0,joint_4=0.0,joint_5=0.0,joint_6=0.0)}
moveit_active" >
moveit_active:=false" >

<!-- ros2 control include -->
<xacro:include filename="$(find kortex_description)/arms/gen3_lite/${dof}dof/urdf/kortex.ros2_control.xacro" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
gripper_joint_name
gripper_max_velocity:=100.0
gripper_max_force:=100.0
moveit_active">
moveit_active:=false">

<ros2_control name="${name}" type="system">
<hardware>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
isaac_joint_commands:=/isaac_joint_commands
isaac_joint_states:=/isaac_joint_states
use_internal_bus_gripper_comm:=true
moveit_active">
moveit_active:=false">

<xacro:if value="${use_fake_hardware or sim_isaac or sim_ignition}">
<xacro:unless value="${moveit_active}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
isaac_joint_commands:=/isaac_joint_commands
isaac_joint_states:=/isaac_joint_states
use_internal_bus_gripper_comm:=false
com_port:=/dev/ttyUSB0">
com_port:=/dev/ttyUSB0
moveit_active:=false">
<xacro:include filename="$(find robotiq_description)/urdf/robotiq_2f_140_macro.urdf.xacro" />

<!-- Hardware talks directly to the gripper so we don't need ros2_control unless we are simulating -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
isaac_joint_commands:=/isaac_joint_commands
isaac_joint_states:=/isaac_joint_states
use_internal_bus_gripper_comm:=false
com_port:=/dev/ttyUSB0">
com_port:=/dev/ttyUSB0
moveit_active:=false">
<xacro:include filename="$(find robotiq_description)/urdf/robotiq_2f_85_macro.urdf.xacro" />

<!-- Hardware talks directly to the gripper so we don't need ros2_control unless we are simulating -->
Expand Down
2 changes: 1 addition & 1 deletion kortex_description/robots/kortex_robot.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
gripper_max_velocity:=100.0
gripper_max_force:=100.0
gripper_com_port:=/dev/ttyUSB0
moveit_active">
moveit_active:=false">

<!-- Include and load arm macro files -->
<xacro:include filename="$(find kortex_description)/arms/${arm}/${dof}dof/urdf/${arm}_macro.xacro" />
Expand Down

0 comments on commit 535d06c

Please sign in to comment.