Skip to content

Commit

Permalink
[MSA] Launch Updates (moveit#1247)
Browse files Browse the repository at this point in the history
  • Loading branch information
DLu committed May 19, 2022
1 parent 489664f commit cf22a66
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ from moveit_configs_utils.launches import [FUNCTION_NAME]


def generate_launch_description():
moveit_config = MoveItConfigsBuilder("[GENERATED_PACKAGE_NAME]").to_moveit_configs()
moveit_config = MoveItConfigsBuilder("[ROBOT_NAME]", package_name="[GENERATED_PACKAGE_NAME]").to_moveit_configs()
return [FUNCTION_NAME](moveit_config)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from launch import LaunchDescription
from moveit_configs_utils.launch_utils import (
add_debuggable_node,
DeclareBooleanLaunchArg,
)


def generate_launch_description():
ld = LaunchDescription()

ld.add_action(DeclareBooleanLaunchArg("debug", default_value=False))
add_debuggable_node(
ld,
package="moveit_setup_assistant",
executable="moveit_setup_assistant",
)

return ld

0 comments on commit cf22a66

Please sign in to comment.