Skip to content

Commit 9d216c1

Browse files
authored
Merge pull request #1116 from ROBOTIS-GIT/feature-coind4-update
Support LDS03 (Coin D4)
2 parents ffbc7e8 + 4cfa8ab commit 9d216c1

File tree

20 files changed

+50
-11
lines changed

20 files changed

+50
-11
lines changed

turtlebot3/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package turtlebot3
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.3.3 (2025-07-11)
6+
------------------
7+
* Supported COIN D4 LIDAR(ld03)
8+
* Contributors: Hyungyu Kim
9+
510
2.3.2 (2025-07-08)
611
------------------
712
* Added class member variable initialization statement in the odometry node

turtlebot3/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>turtlebot3</name>
5-
<version>2.3.2</version>
5+
<version>2.3.3</version>
66
<description>
77
ROS 2 packages for TurtleBot3
88
</description>

turtlebot3_bringup/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package turtlebot3_bringup
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.3.3 (2025-07-11)
6+
------------------
7+
* Supported COIN D4 LIDAR(ld03)
8+
* Contributors: Hyungyu Kim
9+
510
2.3.2 (2025-07-08)
611
------------------
712
* None

turtlebot3_bringup/launch/robot.launch.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ def generate_launch_description():
6464
'lidar_pkg_dir',
6565
default=os.path.join(get_package_share_directory('ld08_driver'), 'launch'))
6666
LDS_LAUNCH_FILE = '/ld08.launch.py'
67+
elif LDS_MODEL == 'LDS-03':
68+
lidar_pkg_dir = LaunchConfiguration(
69+
'lidar_pkg_dir',
70+
default=os.path.join(get_package_share_directory('coin_d4_driver'), 'launch'))
71+
LDS_LAUNCH_FILE = '/single_lidar_node.launch.py'
6772
else:
6873
lidar_pkg_dir = LaunchConfiguration(
6974
'lidar_pkg_dir',

turtlebot3_bringup/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>turtlebot3_bringup</name>
5-
<version>2.3.2</version>
5+
<version>2.3.3</version>
66
<description>
77
ROS 2 launch scripts for starting the TurtleBot3
88
</description>

turtlebot3_bringup/script/99-turtlebot3-cdc.rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
ATTRS{idVendor}=="0483" ATTRS{idProduct}=="5740", ENV{ID_MM_DEVICE_IGNORE}="1", MODE:="0666"
88
ATTRS{idVendor}=="0483" ATTRS{idProduct}=="df11", MODE:="0666"
99
ATTRS{idVendor}=="fff1" ATTRS{idProduct}=="ff48", ENV{ID_MM_DEVICE_IGNORE}="1", MODE:="0666"
10-
ATTRS{idVendor}=="10c4" ATTRS{idProduct}=="ea60", ENV{ID_MM_DEVICE_IGNORE}="1", MODE:="0666"
10+
ATTRS{idVendor}=="10c4" ATTRS{idProduct}=="ea60", ENV{ID_MM_DEVICE_IGNORE}="1", MODE:="0666" SYMLINK+="tb3_lidar"

turtlebot3_cartographer/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package turtlebot3_cartographer
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.3.3 (2025-07-11)
6+
------------------
7+
* None
8+
59
2.3.2 (2025-07-08)
610
------------------
711
* None

turtlebot3_cartographer/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>turtlebot3_cartographer</name>
5-
<version>2.3.2</version>
5+
<version>2.3.3</version>
66
<description>
77
ROS 2 launch scripts for cartographer
88
</description>

turtlebot3_description/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package turtlebot3_description
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.3.3 (2025-07-11)
6+
------------------
7+
* None
8+
59
2.3.2 (2025-07-08)
610
------------------
711
* None

turtlebot3_description/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>turtlebot3_description</name>
5-
<version>2.3.2</version>
5+
<version>2.3.3</version>
66
<description>
77
3D models of the TurtleBot3 for simulation and visualization
88
</description>

0 commit comments

Comments
 (0)