mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
* remove non-functional gazebo headless arg * remove unused namespace args * simplify mavros launch, use mavros's px4.launch instead * fix single_vehicle_spawn spelling * formatting with xmllint: remove empty lines, set intent to 4 spaces, add xml tag for editors, add comments to break up spections * remove old and deprecated launch files
20 lines
753 B
XML
20 lines
753 B
XML
<?xml version="1.0"?>
|
|
<launch>
|
|
<!-- Posix SITL MAVROS integration tests -->
|
|
<!-- Test a mission -->
|
|
<arg name="gui" default="false"/>
|
|
<arg name="est" default="ekf2"/>
|
|
<arg name="mission"/>
|
|
<arg name="vehicle"/>
|
|
<arg name="respawn_gazebo" default="true"/>
|
|
<!-- MAVROS, PX4 SITL, Gazebo -->
|
|
<include file="$(find px4)/launch/mavros_posix_sitl.launch">
|
|
<arg name="gui" value="$(arg gui)"/>
|
|
<arg name="vehicle" value="$(arg vehicle)"/>
|
|
<arg name="est" value="$(arg est)"/>
|
|
<arg name="respawn_gazebo" value="$(arg respawn_gazebo)"/>
|
|
</include>
|
|
<!-- ROStest -->
|
|
<test test-name="mission_test" pkg="px4" type="mission_test.py" time-limit="300.0" args="$(arg mission)"/>
|
|
</launch>
|