Skip to content

Commit

Permalink
bugfixes on launch file
Browse files Browse the repository at this point in the history
  • Loading branch information
mrinalTheCoder committed Nov 20, 2024
1 parent 2d38fc6 commit 729bf81
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions urc_bringup/launch/bringup.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ def generate_launch_description():
xacro_file = os.path.join(
get_package_share_directory("urc_hw_description"), "urdf/walli.xacro"
)
assert os.path.exists(xacro_file), "urdf path doesnt exist in "
+ str(xacro_file)
assert os.path.exists(xacro_file), "urdf path doesnt exist in " + str(xacro_file)
robot_description_config = process_file(
xacro_file, mappings={"use_simulation": "false"}
)
Expand Down Expand Up @@ -84,11 +83,6 @@ def generate_launch_description():
arguments=["-p", controller_config_file_dir, "status_light_controller"]
)

imu_parser_node = Node(
package="urc_platform",
executable="urc_platform_IMUParser"
)

teleop_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
[FindPackageShare("urc_bringup"), "/launch/teleop.launch.py"]
Expand Down Expand Up @@ -117,7 +111,6 @@ def generate_launch_description():
)
)

# change here
launch_vectornav = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(pkg_vectornav, "launch", "vectornav.launch.py")
Expand Down Expand Up @@ -159,6 +152,5 @@ def generate_launch_description():
rosbridge_server_node,
odom_frame_node,
launch_vectornav,
imu_parser_node
]
)

0 comments on commit 729bf81

Please sign in to comment.