-
Notifications
You must be signed in to change notification settings - Fork 21
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
Aron Svastits
committed
Nov 10, 2023
1 parent
dc52375
commit 73c410c
Showing
11 changed files
with
51 additions
and
104 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,10 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="lbr_iisy11_r1300"> | ||
<!-- Import iisy urdf file --> | ||
<xacro:include filename="$(find kuka_lbr_iisy_support)/urdf/lbr_iisy11_r1300_macro.xacro"/> | ||
<!-- Import iisy urdf file --> | ||
<xacro:include filename="$(find kuka_lbr_iisy_support)/urdf/lbr_iisy11_r1300_macro.xacro"/> | ||
|
||
<!-- Read parameters from eci_config --> | ||
<xacro:property name="eci_config" value="$(find kuka_rox_hw_interface)/config/eci_config.yaml" /> | ||
<xacro:property name="eci_config_dict" value="${xacro.load_yaml(eci_config)}"/> | ||
<xacro:property name="control_mode" value="${eci_config_dict['robot_manager']['ros__parameters']['control_mode']}" /> | ||
<xacro:property name="client_ip" value="${eci_config_dict['robot_manager']['ros__parameters']['client_ip']}" /> | ||
<xacro:property name="controller_ip" value="${eci_config_dict['robot_manager']['ros__parameters']['controller_ip']}" /> | ||
<!-- Read additional arguments --> | ||
<xacro:arg name="use_fake_hardware" default="false" /> | ||
|
||
<!-- Read QoS profile parameters --> | ||
<xacro:property name="qos_config" value="$(find kuka_rox_hw_interface)/config/qos_profiles.yaml" /> | ||
<xacro:property name="qos_config_dict" value="${xacro.load_yaml(qos_config)}"/> | ||
<xacro:property name="consequent_lost_packets" value="${qos_config_dict['rt_packet_loss_profile']['consequent_lost_packets']}" /> | ||
<xacro:property name="lost_packets_in_timeframe" value="${qos_config_dict['rt_packet_loss_profile']['lost_packets_in_timeframe']}" /> | ||
<xacro:property name="timeframe_ms" value="${qos_config_dict['rt_packet_loss_profile']['timeframe_ms']}" /> | ||
|
||
|
||
<xacro:kuka_lbr_iisy11_r1300_robot prefix="" | ||
client_ip="${client_ip}" | ||
controller_ip="${controller_ip}" | ||
control_mode="${control_mode}" | ||
consequent_lost_packets="${consequent_lost_packets}" | ||
lost_packets_in_timeframe="${lost_packets_in_timeframe}" | ||
timeframe_ms="${timeframe_ms}"/> | ||
</robot> | ||
<xacro:kuka_lbr_iisy11_r1300_robot prefix="" use_fake_hardware="$(arg use_fake_hardware)"/> | ||
</robot> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,10 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="lbr_iisy15_r930"> | ||
<!-- Import iisy urdf file --> | ||
<xacro:include filename="$(find kuka_lbr_iisy_support)/urdf/lbr_iisy15_r930_macro.xacro"/> | ||
<!-- Import iisy urdf file --> | ||
<xacro:include filename="$(find kuka_lbr_iisy_support)/urdf/lbr_iisy15_r930_macro.xacro"/> | ||
|
||
<!-- Read parameters from eci_config --> | ||
<xacro:property name="eci_config" value="$(find kuka_rox_hw_interface)/config/eci_config.yaml" /> | ||
<xacro:property name="eci_config_dict" value="${xacro.load_yaml(eci_config)}"/> | ||
<xacro:property name="control_mode" value="${eci_config_dict['robot_manager']['ros__parameters']['control_mode']}" /> | ||
<xacro:property name="client_ip" value="${eci_config_dict['robot_manager']['ros__parameters']['client_ip']}" /> | ||
<xacro:property name="controller_ip" value="${eci_config_dict['robot_manager']['ros__parameters']['controller_ip']}" /> | ||
<!-- Read additional arguments --> | ||
<xacro:arg name="use_fake_hardware" default="false" /> | ||
|
||
<!-- Read QoS profile parameters --> | ||
<xacro:property name="qos_config" value="$(find kuka_rox_hw_interface)/config/qos_profiles.yaml" /> | ||
<xacro:property name="qos_config_dict" value="${xacro.load_yaml(qos_config)}"/> | ||
<xacro:property name="consequent_lost_packets" value="${qos_config_dict['rt_packet_loss_profile']['consequent_lost_packets']}" /> | ||
<xacro:property name="lost_packets_in_timeframe" value="${qos_config_dict['rt_packet_loss_profile']['lost_packets_in_timeframe']}" /> | ||
<xacro:property name="timeframe_ms" value="${qos_config_dict['rt_packet_loss_profile']['timeframe_ms']}" /> | ||
|
||
|
||
<xacro:kuka_lbr_iisy15_r930_robot prefix="" | ||
client_ip="${client_ip}" | ||
controller_ip="${controller_ip}" | ||
control_mode="${control_mode}" | ||
consequent_lost_packets="${consequent_lost_packets}" | ||
lost_packets_in_timeframe="${lost_packets_in_timeframe}" | ||
timeframe_ms="${timeframe_ms}"/> | ||
<xacro:kuka_lbr_iisy15_r930_robot prefix="" use_fake_hardware="$(arg use_fake_hardware)"/> | ||
</robot> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,10 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="lbr_iisy3_r760"> | ||
<!-- Import iisy urdf file --> | ||
<xacro:include filename="$(find kuka_lbr_iisy_support)/urdf/lbr_iisy3_r760_macro.xacro"/> | ||
<!-- Import iisy urdf file --> | ||
<xacro:include filename="$(find kuka_lbr_iisy_support)/urdf/lbr_iisy3_r760_macro.xacro"/> | ||
|
||
<!-- Read parameters from eci_config --> | ||
<xacro:property name="eci_config" value="$(find kuka_rox_hw_interface)/config/eci_config.yaml" /> | ||
<xacro:property name="eci_config_dict" value="${xacro.load_yaml(eci_config)}"/> | ||
<xacro:property name="control_mode" value="${eci_config_dict['robot_manager']['ros__parameters']['control_mode']}" /> | ||
<xacro:property name="client_ip" value="${eci_config_dict['robot_manager']['ros__parameters']['client_ip']}" /> | ||
<xacro:property name="controller_ip" value="${eci_config_dict['robot_manager']['ros__parameters']['controller_ip']}" /> | ||
<!-- Read additional arguments --> | ||
<xacro:arg name="use_fake_hardware" default="false" /> | ||
|
||
<!-- Read QoS profile parameters --> | ||
<xacro:property name="qos_config" value="$(find kuka_rox_hw_interface)/config/qos_profiles.yaml" /> | ||
<xacro:property name="qos_config_dict" value="${xacro.load_yaml(qos_config)}"/> | ||
<xacro:property name="consequent_lost_packets" value="${qos_config_dict['rt_packet_loss_profile']['consequent_lost_packets']}" /> | ||
<xacro:property name="lost_packets_in_timeframe" value="${qos_config_dict['rt_packet_loss_profile']['lost_packets_in_timeframe']}" /> | ||
<xacro:property name="timeframe_ms" value="${qos_config_dict['rt_packet_loss_profile']['timeframe_ms']}" /> | ||
|
||
<!-- Read additional arguments --> | ||
<xacro:arg name="use_fake_hardware" default="false" /> | ||
|
||
<xacro:kuka_lbr_iisy3_r760_robot prefix="" | ||
client_ip="${client_ip}" | ||
controller_ip="${controller_ip}" | ||
control_mode="${control_mode}" | ||
consequent_lost_packets="${consequent_lost_packets}" | ||
lost_packets_in_timeframe="${lost_packets_in_timeframe}" | ||
timeframe_ms="${timeframe_ms}" | ||
use_fake_hardware="$(arg use_fake_hardware)"/> | ||
<xacro:kuka_lbr_iisy3_r760_robot prefix="" use_fake_hardware="$(arg use_fake_hardware)"/> | ||
</robot> |
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