Skip to content

Commit eef253d

Browse files
slimasziomsivral
andauthored
HOTFIX: remove quotation marks from param values (#2)
* FIX: remove question marks * ADD: update docs * Update CHANGELOG.md Co-authored-by: Jakub <sivral@proton.me> --------- Co-authored-by: Jakub <sivral@proton.me>
1 parent e6801c2 commit eef253d

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
### Removed
1818

1919
### Fixed
20+
* [PR-2] (https://github.com/AGH-CEAI/robotiq_hande_description/pull/2) - Removed unnecessary quotation marks from parameter values.
2021

2122
### Security

urdf/robotiq_hande_gripper.ros2_control.xacro

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99

1010
<xacro:unless value="${use_fake_hardware}">
1111
<plugin>robotiq_hande_driver/RobotiqHandeHardwareInterface</plugin>
12-
<param name="grip_pos_min">"${grip_pos_min}"</param>
13-
<param name="grip_pos_max">"${grip_pos_max}"</param>
14-
<param name="tty">"${tty}"</param>
15-
<param name="baudrate">"${baudrate}"</param>
16-
<param name="parity">"${parity}"</param>
17-
<param name="data_bits">"${data_bits}"</param>
18-
<param name="stop_bit">"${stop_bit}"</param>
19-
<param name="slave_id">"${slave_id}"</param>
12+
<param name="grip_pos_min">${grip_pos_min}</param>
13+
<param name="grip_pos_max">${grip_pos_max}</param>
14+
<param name="tty">${tty}</param>
15+
<param name="baudrate">${baudrate}</param>
16+
<param name="parity">${parity}</param>
17+
<param name="data_bits">${data_bits}</param>
18+
<param name="stop_bit">${stop_bit}</param>
19+
<param name="slave_id">${slave_id}</param>
2020
</xacro:unless>
2121
</hardware>
2222

0 commit comments

Comments
 (0)