diff --git a/CHANGELOG.md b/CHANGELOG.md index 785f279..1102f5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +* [PR-15](https://github.com/AGH-CEAI/robotiq_hande_description/pull/15) - Renamed `ip_adress` to `socat_ip_address` and `port` to `socat_port`. + * [PR-14](https://github.com/AGH-CEAI/robotiq_hande_description/pull/14) - Updated CMake version from `3.8` to `3.16`; changed ros2_control param name `tty` to `tty_port`. diff --git a/urdf/robotiq_hande_gripper.ros2_control.xacro b/urdf/robotiq_hande_gripper.ros2_control.xacro index 62d0e0a..5fda327 100644 --- a/urdf/robotiq_hande_gripper.ros2_control.xacro +++ b/urdf/robotiq_hande_gripper.ros2_control.xacro @@ -2,7 +2,7 @@ @@ -24,8 +24,8 @@ ${frequency_hz} ${create_socat_tty} - ${ip_adress} - ${port} + ${socat_ip_address} + ${socat_port} diff --git a/urdf/robotiq_hande_gripper.urdf.xacro b/urdf/robotiq_hande_gripper.urdf.xacro index d5cf54e..43b64fd 100644 --- a/urdf/robotiq_hande_gripper.urdf.xacro +++ b/urdf/robotiq_hande_gripper.urdf.xacro @@ -12,8 +12,8 @@ - - + + @@ -34,8 +34,8 @@ slave_id="$(arg slave_id)" frequency_hz="$(arg frequency_hz)" create_socat_tty="$(arg create_socat_tty)" - ip_adress="$(arg ip_adress)" - port="$(arg port)" + socat_ip_address="$(arg socat_ip_address)" + socat_port="$(arg socat_port)" use_fake_hardware="$(arg use_fake_hardware)" /> diff --git a/urdf/robotiq_hande_gripper.xacro b/urdf/robotiq_hande_gripper.xacro index 715d24a..8ce2b5f 100644 --- a/urdf/robotiq_hande_gripper.xacro +++ b/urdf/robotiq_hande_gripper.xacro @@ -23,8 +23,8 @@ use_fake_hardware frequency_hz:=10 create_socat_tty:=false - ip_adress:=192.168.100.10 - port:=54321 + socat_ip_address:=192.168.100.10 + socat_port:=54321 coupler_mass:=0.119 xyz:='0 0 0' rpy:='0 0 0'" @@ -43,8 +43,8 @@ slave_id="${slave_id}" frequency_hz="${frequency_hz}" create_socat_tty="${create_socat_tty}" - ip_adress="${ip_adress}" - port="${port}" + socat_ip_address="${socat_ip_address}" + socat_port="${socat_port}" use_fake_hardware="${use_fake_hardware}" />