We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi all,
I would to launch ros2_control_node having my hardware component on inactive state as first state. I read the documentation at https://control.ros.org/master/doc/ros2_control/controller_manager/doc/userdoc.html that works like
ros2_control_node
inactive
hardware_components_initial_state: unconfigured: - "arm1" - "arm2" inactive: - "base3"
and my ros2_control description looks like:
<?xml version="1.0" encoding="utf-8"?> <robot xmlns:xacro="http://www.ros.org/wiki/xacro"> <xacro:macro name="awtube_ros2_control" params="use_fake_hardware:=^|true robot_id:=^|awtube brand:=^|synapticon mode_of_op:=^|8"> <ros2_control name="AwTubeSystem" type="system"> <hardware> <xacro:if value="${use_fake_hardware}"> <plugin>fake_components/GenericSystem</plugin> </xacro:if> <xacro:unless value="${use_fake_hardware}"> <plugin>ethercat_driver/EthercatDriver</plugin> <param name="master_id">0</param> <param name="control_frequency">1000</param> </xacro:unless> </hardware> . . . </ros2_control> </xacro:macro> </robot>
When writing in my ros2_controller.yam the following code, controllers go immediately in the activate state, and do not stop in the inactive.
ros2_controller.yam
controller_manager: ros__parameters: update_rate: 1000 hardware_components_initial_state: inactive: - AwTubeSystem
Have your got any idea to add this feature?
Thanks
The text was updated successfully, but these errors were encountered:
Solved in #1128
Sorry, something went wrong.
No branches or pull requests
Hi all,
I would to launch
ros2_control_node
having my hardware component oninactive
state as first state.I read the documentation at https://control.ros.org/master/doc/ros2_control/controller_manager/doc/userdoc.html that works like
and my ros2_control description looks like:
When writing in my
ros2_controller.yam
the following code, controllers go immediately in the activate state, and do not stop in the inactive.Have your got any idea to add this feature?
Thanks
The text was updated successfully, but these errors were encountered: