Skip to content

Commit 6ae8c35

Browse files
authored
Merge branch 'master' into fix/gpio-issue-1970-clean
2 parents 812ebea + f72f813 commit 6ae8c35

File tree

84 files changed

+649
-114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+649
-114
lines changed

ackermann_steering_controller/CHANGELOG.rst

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

5+
6.3.0 (2026-02-03)
6+
------------------
7+
58
6.2.0 (2025-12-31)
69
------------------
710

ackermann_steering_controller/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>ackermann_steering_controller</name>
5-
<version>6.2.0</version>
5+
<version>6.3.0</version>
66
<description>Steering controller for Ackermann kinematics. Rear fixed wheels are powering the vehicle and front wheels are steering it.</description>
77

88
<maintainer email="bence.magyar.robotics@gmail.com">Bence Magyar</maintainer>

admittance_controller/CHANGELOG.rst

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

5+
6.3.0 (2026-02-03)
6+
------------------
7+
* Check robot description validity in AdmittanceController (`#2009 <https://github.com/ros-controls/ros2_controllers/issues/2009>`_)
8+
* Contributors: Caio Freitas
9+
510
6.2.0 (2025-12-31)
611
------------------
712

admittance_controller/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>admittance_controller</name>
5-
<version>6.2.0</version>
5+
<version>6.3.0</version>
66
<description>Implementation of admittance controllers for different input and output interface.</description>
77

88
<maintainer email="bence.magyar.robotics@gmail.com">Bence Magyar</maintainer>

bicycle_steering_controller/CHANGELOG.rst

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

5+
6.3.0 (2026-02-03)
6+
------------------
7+
58
6.2.0 (2025-12-31)
69
------------------
710

bicycle_steering_controller/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>bicycle_steering_controller</name>
5-
<version>6.2.0</version>
5+
<version>6.3.0</version>
66
<description>Steering controller with bicycle kinematics. Rear fixed wheel is powering the vehicle and front wheel is steering.</description>
77

88
<maintainer email="bence.magyar.robotics@gmail.com">Bence Magyar</maintainer>

chained_filter_controller/CHANGELOG.rst

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

5+
6.3.0 (2026-02-03)
6+
------------------
7+
58
6.2.0 (2025-12-31)
69
------------------
710

chained_filter_controller/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>chained_filter_controller</name>
5-
<version>6.2.0</version>
5+
<version>6.3.0</version>
66
<description>ros2_controller for configuring filter chains</description>
77

88
<maintainer email="bence.magyar.robotics@gmail.com">Bence Magyar</maintainer>

diff_drive_controller/CHANGELOG.rst

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

5+
6.3.0 (2026-02-03)
6+
------------------
7+
* Fixup whitespace (`#2122 <https://github.com/ros-controls/ros2_controllers/issues/2122>`_)
8+
* docs: diff_drive_controller - complete wheel_separation_multiplier description and fix then→than typo (`#2108 <https://github.com/ros-controls/ros2_controllers/issues/2108>`_)
9+
* Contributors: Bence Magyar, 杨晟军(Shengjun Yang)
10+
511
6.2.0 (2025-12-31)
612
------------------
713
* Use TF prefix helper for diff drive controller (`#1997 <https://github.com/ros-controls/ros2_controllers/issues/1997>`_)

diff_drive_controller/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ set_compiler_options()
66
export_windows_symbols()
77

88
set(THIS_PACKAGE_INCLUDE_DEPENDS
9+
control_msgs
910
control_toolbox
1011
controller_interface
1112
generate_parameter_library
@@ -60,7 +61,8 @@ target_link_libraries(diff_drive_controller
6061
tf2::tf2
6162
${tf2_msgs_TARGETS}
6263
${geometry_msgs_TARGETS}
63-
${nav_msgs_TARGETS})
64+
${nav_msgs_TARGETS}
65+
${control_msgs_TARGETS})
6466
pluginlib_export_plugin_description_file(controller_interface diff_drive_plugin.xml)
6567

6668
if(BUILD_TESTING)

0 commit comments

Comments
 (0)