-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1813 from UAVenture/ros-expose-arguments
Use new arguments for euroc launch files
- Loading branch information
Showing
5 changed files
with
70 additions
and
10 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 |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<launch> | ||
|
||
<include file="$(find rotors_gazebo)/launch/ardrone_empty_world_with_joy.launch" /> | ||
<include file="$(find px4)/launch/ardrone.launch" /> | ||
<arg name="headless" default="false"/> | ||
<arg name="gui" default="true"/> | ||
<arg name="enable_logging" default="false"/> | ||
<arg name="enable_ground_truth" default="true"/> | ||
<arg name="log_file" default="ardrone"/> | ||
|
||
<include file="$(find rotors_gazebo)/launch/ardrone_empty_world_with_joy.launch"> | ||
<arg name="headless" value="$(arg headless)"/> | ||
<arg name="gui" value="$(arg gui)"/> | ||
<arg name="enable_logging" value="$(arg enable_logging)" /> | ||
<arg name="enable_ground_truth" value="$(arg enable_ground_truth)" /> | ||
<arg name="log_file" value="$(arg log_file)"/> | ||
</include> | ||
<include file="$(find px4)/launch/ardrone.launch" /> | ||
|
||
</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 |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<launch> | ||
|
||
<include file="$(find rotors_gazebo)/launch/ardrone_house_world_with_joy.launch" /> | ||
<include file="$(find px4)/launch/ardrone.launch" /> | ||
<arg name="headless" default="false"/> | ||
<arg name="gui" default="true"/> | ||
<arg name="enable_logging" default="false"/> | ||
<arg name="enable_ground_truth" default="true"/> | ||
<arg name="log_file" default="ardrone"/> | ||
|
||
<include file="$(find rotors_gazebo)/launch/ardrone_house_world_with_joy.launch"> | ||
<arg name="headless" value="$(arg headless)"/> | ||
<arg name="gui" value="$(arg gui)"/> | ||
<arg name="enable_logging" value="$(arg enable_logging)" /> | ||
<arg name="enable_ground_truth" value="$(arg enable_ground_truth)" /> | ||
<arg name="log_file" value="$(arg log_file)"/> | ||
</include> | ||
<include file="$(find px4)/launch/ardrone.launch" /> | ||
|
||
</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 |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<launch> | ||
|
||
<include file="$(find rotors_gazebo)/launch/iris_empty_world_with_joy.launch" /> | ||
<include file="$(find px4)/launch/iris.launch" /> | ||
<arg name="headless" default="false"/> | ||
<arg name="gui" default="true"/> | ||
<arg name="enable_logging" default="false"/> | ||
<arg name="enable_ground_truth" default="true"/> | ||
<arg name="log_file" default="iris"/> | ||
|
||
<include file="$(find rotors_gazebo)/launch/iris_empty_world_with_joy.launch"> | ||
<arg name="headless" value="$(arg headless)"/> | ||
<arg name="gui" value="$(arg gui)"/> | ||
<arg name="enable_logging" value="$(arg enable_logging)" /> | ||
<arg name="enable_ground_truth" value="$(arg enable_ground_truth)" /> | ||
<arg name="log_file" value="$(arg log_file)"/> | ||
</include> | ||
<include file="$(find px4)/launch/iris.launch" /> | ||
|
||
</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 |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<launch> | ||
|
||
<include file="$(find rotors_gazebo)/launch/iris_house_world_with_joy.launch" /> | ||
<include file="$(find px4)/launch/iris.launch" /> | ||
<arg name="headless" default="false"/> | ||
<arg name="gui" default="true"/> | ||
<arg name="enable_logging" default="false"/> | ||
<arg name="enable_ground_truth" default="true"/> | ||
<arg name="log_file" default="iris"/> | ||
|
||
<include file="$(find rotors_gazebo)/launch/iris_house_world_with_joy.launch"> | ||
<arg name="headless" value="$(arg headless)"/> | ||
<arg name="gui" value="$(arg gui)"/> | ||
<arg name="enable_logging" value="$(arg enable_logging)" /> | ||
<arg name="enable_ground_truth" value="$(arg enable_ground_truth)" /> | ||
<arg name="log_file" value="$(arg log_file)"/> | ||
</include> | ||
<include file="$(find px4)/launch/iris.launch" /> | ||
|
||
</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 |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<launch> | ||
|
||
<include file="$(find rotors_gazebo)/launch/iris_outdoor_world_with_joy.launch" /> | ||
<include file="$(find px4)/launch/iris.launch" /> | ||
<arg name="headless" default="false"/> | ||
<arg name="gui" default="true"/> | ||
<arg name="enable_logging" default="false"/> | ||
<arg name="enable_ground_truth" default="true"/> | ||
<arg name="log_file" default="iris"/> | ||
|
||
<include file="$(find rotors_gazebo)/launch/iris_outdoor_world_with_joy.launch"> | ||
<arg name="headless" value="$(arg headless)"/> | ||
<arg name="gui" value="$(arg gui)"/> | ||
<arg name="enable_logging" value="$(arg enable_logging)" /> | ||
<arg name="enable_ground_truth" value="$(arg enable_ground_truth)" /> | ||
<arg name="log_file" value="$(arg log_file)"/> | ||
</include> | ||
<include file="$(find px4)/launch/iris.launch" /> | ||
|
||
</launch> |