You're reading the documentation for a development version. For the latest released version, please have a look at Jazzy.
Iron to Jazzy
General
A
version.h
file will be generated per package using the ament_generate_version_header (#1449). For example, you can include the version of the package in the logs.#include <controller_manager/version.h> ... RCLCPP_INFO(get_logger(), "controller_manager version: %s", CONTROLLER_MANAGER_VERSION_STR);
controller_interface
For details see the controller_manager section.
Pass URDF to controllers on init (#1088).
Pass controller manager update rate on the init of the controller interface (#1141)
A method to get node options to setup the controller node #api-breaking (#1169)
Export state interfaces from the chainable controller #api-breaking (#1021)
All chainable controllers must implement the method
export_state_interfaces
to export the state interfaces, similar toexport_reference_interfaces
method that is exporting the reference interfaces.The controllers will now set
use_global_arguments
from NodeOptions to false, to avoid getting influenced by global arguments (Issue : #1684) (#1694). From now on, in order to set the parameters to the controller, the--param-file
option from spawner should be used.With (#1683) the
rclcpp_lifecycle::State & get_state()
andvoid set_state(const rclcpp_lifecycle::State & new_state)
are replaced byrclcpp_lifecycle::State & get_lifecycle_state()
andvoid set_lifecycle_state(const rclcpp_lifecycle::State & new_state)
. This change affects controllers and hardware. This is related to (#1240) as variant support introducesget_state
andset_state
methods for setting/getting state of handles.The
assign_interfaces
andrelease_interfaces
methods are now virtual, so that the user can override them to store the interfaces into custom variable types, so that the user can have the flexibility to take the ownership of the loaned interfaces to the controller (#1743)The new
PoseSensor
semantic component provides a standard interface for hardware providing cartesian poses (#1775)The controllers now support the fallback controllers (a list of controllers that will be activated, when the spawned controllers fails by throwing an exception or returning
return_type::ERROR
during theupdate
cycle) (#1789)
controller_manager
URDF is now passed to controllers on init (#1088) This should help avoiding extra legwork in controllers to get access to the
/robot_description
.Pass controller manager update rate on the init of the controller interface (#1141)
Report inactive controllers as a diagnostics ok instead of an error (#1184)
Set chained controller interfaces ‘available’ for activated controllers (#1098)
Configured chainable controller: Listed exported interfaces are unavailable and unclaimed
Active chainable controller (not in chained mode): Listed exported interfaces are available but unclaimed
Active chainable controller (in chained mode): Listed exported interfaces are available and claimed
Try using SCHED_FIFO on any kernel (#1142)
A method to get node options to setup the controller node was added (#1169):
get_node_options
can be overridden by controllers, this would make it easy for other controllers to be able to setup their own custom node optionsCM now subscribes to
robot_description
topic instead of~/robot_description
(#1410).Change the controller sorting with an approach similar to directed acyclic graphs (#1384)
Changes from (PR #1256)
All
joints
defined in the<ros2_control>
-tag have to be present in the URDF received by the controller manager, otherwise the following error is shown:The published robot description file (URDF) seems not to be genuine. The following error was caught: <unknown_joint> not found in URDF.
This is to ensure that the URDF and the
<ros2_control>
-tag are consistent. E.g., for configuration ports usegpio
interface types instead.The syntax for mimic joints is changed to the official URDF specification.
<joint name="right_finger_joint" type="prismatic"> <axis xyz="0 1 0"/> <origin xyz="0.0 -0.48 1" rpy="0.0 0.0 0.0"/> <parent link="base"/> <child link="finger_right"/> <limit effort="1000.0" lower="0" upper="0.38" velocity="10"/> </joint> <joint name="left_finger_joint" type="prismatic"> <mimic joint="right_finger_joint" multiplier="1" offset="0"/> <axis xyz="0 1 0"/> <origin xyz="0.0 0.48 1" rpy="0.0 0.0 3.1415926535"/> <parent link="base"/> <child link="finger_left"/> <limit effort="1000.0" lower="0" upper="0.38" velocity="10"/> </joint>
The parameters within the
ros2_control
tag are not supported any more.The support for the
description
parameter for loading the URDF was removed (#1358).The
--controller-type
or-t
spawner arg is removed. Now the controller type is defined in the controller configuration file withtype
field (#1639).The
--namespace
or-n
spawner arg is deprecated. Now the spawner namespace can be defined using the ROS 2 standard way (#1640).Added support for the wildcard entries for the controller configuration files (#1724).
--switch-timeout
was added as parameter to the helper scriptsspawner.py
andunspawner.py
. Useful if controllers cannot be switched immediately, e.g., paused simulations at startup (#1790).ros2_control_node
can now handle the sim time used by different simulators, whenuse_sim_time
is set to true (#1810).The
ros2_control_node
node now accepts thethread_priority
parameter to set the scheduler priority of the controller_manager’s RT thread (#1820).The
ros2_control_node
node has a newlock_memory
parameter to lock memory at startup to physical RAM in order to avoid page faults (#1822).The
ros2_control_node
node has a newcpu_affinity
parameter to bind the process to a specific CPU core. By default, this is not enabled. (#1852).The
--service-call-timeout
was added as parameter to the helper scriptsspawner.py
. Useful when the CPU load is high at startup and the service call does not return immediately (#1808).
hardware_interface
A portable version for string-to-double conversion was added:
hardware_interface::stod
(#1257)test_components
was moved to its own package (#1325)The
ros2_control
tag now supports parsing of the limits from the URDF into theHardwareInfo
structure. More conservative limits can be defined using themin
andmax
attributes per interface (#1472)<ros2_control name="RRBotSystemMutipleGPIOs" type="system"> <hardware> <plugin>ros2_control_demo_hardware/RRBotSystemPositionOnlyHardware</plugin> <param name="example_param_hw_start_duration_sec">2.0</param> <param name="example_param_hw_stop_duration_sec">3.0</param> <param name="example_param_hw_slowdown">2.0</param> </hardware> <joint name="joint1"> <command_interface name="position"> <param name="min">-1</param> <param name="max">1</param> </command_interface> <command_interface name="velocity"> <limits enable="false"/> </command_interface> <state_interface name="position"/> </joint> </ros2_control>
Soft limits are also parsed from the URDF into the
HardwareInfo
structure for the defined joints (#1488)Access to logger and clock through
get_logger
andget_clock
methods in ResourceManager and HardwareComponentsActuator
,Sensor
andSystem
(#1585)Added
get_hardware_info
method to the hardware components interface to access theHardwareInfo
instead of accessing the variableinfo_
directly (#1643)With (#1683) the
rclcpp_lifecycle::State & get_state()
andvoid set_state(const rclcpp_lifecycle::State & new_state)
are replaced byrclcpp_lifecycle::State & get_lifecycle_state()
andvoid set_lifecycle_state(const rclcpp_lifecycle::State & new_state)
. This change affects controllers and hardware. This is related to (#1240) as variant support introducesget_state
andset_state
methods for setting/getting state of handles.With (#1421) a key-value storage is added to InterfaceInfo. This allows to define extra params with per Command-/StateInterface in the
.ros2_control.xacro
file.With (#1763) parsing for SDF published to
robot_description
topic is now also supported.
joint_limits
Add header to import limits from standard URDF definition (#1298)
Adaption of Command-/StateInterfaces
Changes from (PR #1688) for an overview of related changes and discussion refer to (PR #1240).
Command-/StateInterfaces
are now created and exported automatically by the framework via theon_export_command_interfaces()
oron_export_state_interfaces()
methods based on the interfaces defined in theros2_control
XML-tag, which gets parsed and theInterfaceDescription
is created accordingly (check the hardware_info.hpp).The memory for storing the value of a
Command-/StateInterfaces
is no longer allocated in the hardware but instead in theCommand-/StateInterfaces
itself.To access the automatically created
Command-/StateInterfaces
we provide thestd::unordered_map<std::string, InterfaceDescription>
, where the string is the fully qualified name of the interface and theInterfaceDescription
is the configuration of the interface. Thestd::unordered_map<>
are divided intotype_state_interfaces_
andtype_command_interfaces_
where type can be:joint
,sensor
,gpio
andunlisted
. E.g. theCommandInterfaces
for all joints can be found in thejoint_command_interfaces_
map. Theunlisted
includes all interfaces not listed in theros2_control
XML-tag but were created by overriding theexport_unlisted_command_interfaces()
orexport_unlisted_state_interfaces()
function by creating some customCommand-/StateInterfaces
.
ros2controlcli
Spawner colours were added to
list_controllers
depending upon active or inactive (#1409)The
set_hardware_component_state
verb was added (#1248). Use the following command to set the state of a hardware componentros2 control set_hardware_component_state <hardware_component_name> <state>
The
load_controller
now supports parsing of the params file (#1703).ros2 control load_controller <controller_name> <realtive_or_absolute_file_path>
All the ros2controlcli verbs now support the namespacing through the ROS 2 standard way (#1703).
ros2 control <verb> <arguments> --ros-args -r __ns:=<namespace>