forked from Field-Robotics-Lab/dave
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |