Skip to content

Commit

Permalink
Add default info of the controller_manager
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Aug 26, 2024
1 parent ee62259 commit db66aa5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions ros2controlcli/doc/userdoc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ list_controllers
List controller's exported references
--verbose, -v List controller's claimed interfaces, required state interfaces and required command interfaces
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand Down Expand Up @@ -77,7 +77,7 @@ list_controller_types
Spin time in seconds to wait for discovery (only applies when not using an already running daemon)
-s, --use-sim-time Enable ROS simulation time
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand Down Expand Up @@ -109,7 +109,7 @@ list_hardware_components
-s, --use-sim-time Enable ROS simulation time
--verbose, -v List hardware components with command and state interfaces
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand Down Expand Up @@ -142,7 +142,7 @@ list_hardware_interfaces
Spin time in seconds to wait for discovery (only applies when not using an already running daemon)
-s, --use-sim-time Enable ROS simulation time
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand Down Expand Up @@ -181,7 +181,7 @@ load_controller
--set-state {inactive,active}
Set the state of the loaded controller
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand All @@ -203,7 +203,7 @@ reload_controller_libraries
-s, --use-sim-time Enable ROS simulation time
--force-kill Force stop of loaded controllers
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand All @@ -228,7 +228,7 @@ set_controller_state
Spin time in seconds to wait for discovery (only applies when not using an already running daemon)
-s, --use-sim-time Enable ROS simulation time
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand All @@ -255,7 +255,7 @@ set_hardware_component_state
Spin time in seconds to wait for discovery (only applies when not using an already running daemon)
-s, --use-sim-time Enable ROS simulation time
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand Down Expand Up @@ -285,7 +285,7 @@ switch_controllers
--switch-timeout SWITCH_TIMEOUT
Timeout for switching controllers
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand All @@ -309,7 +309,7 @@ unload_controller
Spin time in seconds to wait for discovery (only applies when not using an already running daemon)
-s, --use-sim-time Enable ROS simulation time
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
Expand All @@ -330,7 +330,7 @@ view_controller_chains
Spin time in seconds to wait for discovery (only applies when not using an already running daemon)
-s, --use-sim-time Enable ROS simulation time
-c CONTROLLER_MANAGER, --controller-manager CONTROLLER_MANAGER
Name of the controller manager ROS node
Name of the controller manager ROS node (default: controller_manager)
--include-hidden-nodes
Consider hidden nodes as well
--ros-args ... Pass arbitrary arguments to the executable
2 changes: 1 addition & 1 deletion ros2controlcli/ros2controlcli/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def add_controller_mgr_parsers(parser):
arg = parser.add_argument(
"-c",
"--controller-manager",
help="Name of the controller manager ROS node",
help="Name of the controller manager ROS node (default: controller_manager)",
default="controller_manager",
required=False,
)
Expand Down

0 comments on commit db66aa5

Please sign in to comment.