Skip to content

Commit

Permalink
revert unrelated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauch committed Feb 26, 2024
1 parent 214f951 commit 865eb56
Showing 1 changed file with 5 additions and 29 deletions.
34 changes: 5 additions & 29 deletions ur_robot_driver/launch/ur_control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,7 @@
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument, OpaqueFunction
from launch.conditions import IfCondition, UnlessCondition
from launch.substitutions import (
Command,
FindExecutable,
LaunchConfiguration,
PathJoinSubstitution,
)
from launch.substitutions import Command, FindExecutable, LaunchConfiguration, PathJoinSubstitution


def launch_setup(context, *args, **kwargs):
Expand Down Expand Up @@ -85,35 +80,16 @@ def launch_setup(context, *args, **kwargs):
[FindPackageShare(description_package), "config", ur_type, "joint_limits.yaml"]
)
kinematics_params = PathJoinSubstitution(
[
FindPackageShare(description_package),
"config",
ur_type,
"default_kinematics.yaml",
]
[FindPackageShare(description_package), "config", ur_type, "default_kinematics.yaml"]
)
physical_params = PathJoinSubstitution(
[
FindPackageShare(description_package),
"config",
ur_type,
"physical_parameters.yaml",
]
[FindPackageShare(description_package), "config", ur_type, "physical_parameters.yaml"]
)
visual_params = PathJoinSubstitution(
[
FindPackageShare(description_package),
"config",
ur_type,
"visual_parameters.yaml",
]
[FindPackageShare(description_package), "config", ur_type, "visual_parameters.yaml"]
)
script_filename = PathJoinSubstitution(
[
FindPackageShare("ur_client_library"),
"resources",
"external_control.urscript",
]
[FindPackageShare("ur_client_library"), "resources", "external_control.urscript"]
)
input_recipe_filename = PathJoinSubstitution(
[FindPackageShare("ur_robot_driver"), "resources", "rtde_input_recipe.txt"]
Expand Down

0 comments on commit 865eb56

Please sign in to comment.