Skip to content

Commit

Permalink
add launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceMty committed Dec 5, 2019
1 parent f27f2b3 commit 3c0e5c0
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
10 changes: 10 additions & 0 deletions uuv_dave/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 2.8.3)
project(uuv_dave)

find_package(catkin REQUIRED COMPONENTS gazebo_ros)

catkin_package()

install(DIRECTORY launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
PATTERN "*~" EXCLUDE)
25 changes: 25 additions & 0 deletions uuv_dave/launch/uuv_dave.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!--
UUV launch for the DARPA Angler Virtual Environment
-->
<launch>
<arg name="gui" default="true"/>
<arg name="paused" default="false"/>

<include file="$(find uuv_gazebo_worlds)/launch/ocean_waves.launch">
<arg name="paused" value="$(arg paused)"/>
<arg name="gui" value="$(arg gui)"/>
</include>

<include file="$(find uuv_descriptions)/launch/upload_rexrov_oberon7.launch">
<arg name="namespace" value="rexrov"/>
</include>

<include file="$(find uuv_control_cascaded_pid)/launch/joy_accel.launch">
<arg name="model_name" value="rexrov"/>
</include>

<include file="$(find oberon7_control)/launch/joint_control.launch">
<arg name="uuv_name" value="rexrov"/>
</include>

</launch>
15 changes: 15 additions & 0 deletions uuv_dave/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0"?>
<package format="2">
<name>uuv_dave</name>
<version>0.0.1</version>
<description>The uuv_dave package</description>

<maintainer email="[email protected]">Bruce Allen</maintainer>

<author email="[email protected]">Bruce Allen</author>

<license>Apache-2.0</license>

<buildtool_depend>catkin</buildtool_depend>

</package>

0 comments on commit 3c0e5c0

Please sign in to comment.