Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterLiao2004 committed Jan 31, 2025
1 parent 69afe5a commit 42625a8
Showing 1 changed file with 21 additions and 26 deletions.
47 changes: 21 additions & 26 deletions src/control/ros2_control/bringup/launch/qev3d_controller_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,27 @@


def generate_launch_description():
<<<<<<< HEAD:src/control/ros2_control/bringup/launch/qev-3d_controller_launch.py
# List of arguments to be declared into Node
declared_arguments = []
# List of arguments to be declared into Node
declared_arguments = []

# Open Rviz2 GUI
declared_arguments.append(
DeclareLaunchArgument(
"gui",
default_value="true", # Default value is true
description="Start RViz2 automatically with this launch file.",
)
)
# Open Rviz2 GUI
declared_arguments.append(
DeclareLaunchArgument(
"gui",
default_value="true", # Default value is true
description="Start RViz2 automatically with this launch file.",
)
)

# Remap odometry TF from the steering controller to the TF tree
declared_arguments.append(
DeclareLaunchArgument(
"remap_odometry_tf",
default_value="false", # Default value is false
description="Remap odometry TF from the steering controller to the TF tree.",
)
)
# Remap odometry TF from the steering controller to the TF tree
declared_arguments.append(
DeclareLaunchArgument(
"remap_odometry_tf",
default_value="false", # Default value is false
description="Remap odometry TF from the steering controller to the TF tree.",
)
)

# Arguments Initialization
gui = LaunchConfiguration("gui")
remap_odometry_tf = LaunchConfiguration("remap_odometry_tf")
=======
# List of arguments to be declared into Node
declared_arguments = []
>>>>>>> cea9496a927535100acf4a8bec037947a60b01a3:src/control/ros2_control/bringup/launch/qev3d_controller_launch.py
# Arguments Initialization
gui = LaunchConfiguration("gui")
remap_odometry_tf = LaunchConfiguration("remap_odometry_tf")

0 comments on commit 42625a8

Please sign in to comment.