Skip to content

Commit aa4bcbc

Browse files
committed
Fix typo
1 parent b687bc5 commit aa4bcbc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
* [PR-14](https://github.com/AGH-CEAI/robotiq_hande_description/pull/14) - Adds new parameters for the ros2_control: `frequency_hz`, `create_socat_tty`, `ip_adress` and `port`.
12+
* [PR-14](https://github.com/AGH-CEAI/robotiq_hande_description/pull/14) - Adds new parameters for the ros2_control: `frequency_hz`, `create_socat_tty`, `ip_address` and `port`.
1313

1414
### Changed
1515

urdf/robotiq_hande_gripper.ros2_control.xacro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<robot xmlns:xacro="http://www.ros.org/wiki/xacro">
33
<xacro:macro
44
name="robotiq_hande_ros2_control"
5-
params="name prefix grip_pos_min grip_pos_max tty_port baudrate parity data_bits stop_bit slave_id frequency_hz create_socat_tty ip_adress port use_fake_hardware"
5+
params="name prefix grip_pos_min grip_pos_max tty_port baudrate parity data_bits stop_bit slave_id frequency_hz create_socat_tty ip_address port use_fake_hardware"
66
>
77
<ros2_control name="${name}" type="system">
88
<hardware>
@@ -24,7 +24,7 @@
2424
<param name="frequency_hz">${frequency_hz}</param>
2525

2626
<param name="create_socat_tty">${create_socat_tty}</param>
27-
<param name="ip_adress">${ip_adress}</param>
27+
<param name="ip_address">${ip_address}</param>
2828
<param name="port">${port}</param>
2929
</xacro:unless>
3030
</hardware>

urdf/robotiq_hande_gripper.urdf.xacro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<xacro:arg name="frequency_hz" default="10"/>
1313

1414
<xacro:arg name="create_socat_tty" default="false"/>
15-
<xacro:arg name="ip_adress" default="192.168.100.10"/>
15+
<xacro:arg name="ip_address" default="192.168.100.10"/>
1616
<xacro:arg name="port" default="54321"/>
1717

1818
<xacro:arg name="use_fake_hardware" default="true"/>
@@ -34,7 +34,7 @@
3434
slave_id="$(arg slave_id)"
3535
frequency_hz="$(arg frequency_hz)"
3636
create_socat_tty="$(arg create_socat_tty)"
37-
ip_adress="$(arg ip_adress)"
37+
ip_address="$(arg ip_address)"
3838
port="$(arg port)"
3939
use_fake_hardware="$(arg use_fake_hardware)"
4040
/>

urdf/robotiq_hande_gripper.xacro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
use_fake_hardware
2424
frequency_hz:=10
2525
create_socat_tty:=false
26-
ip_adress:=192.168.100.10
26+
ip_address:=192.168.100.10
2727
port:=54321
2828
coupler_mass:=0.119
2929
xyz:='0 0 0'
@@ -43,7 +43,7 @@
4343
slave_id="${slave_id}"
4444
frequency_hz="${frequency_hz}"
4545
create_socat_tty="${create_socat_tty}"
46-
ip_adress="${ip_adress}"
46+
ip_address="${ip_address}"
4747
port="${port}"
4848
use_fake_hardware="${use_fake_hardware}"
4949
/>

0 commit comments

Comments
 (0)