mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
* add respawn_gazebo arg to be used with empty_world.launch * catch rospy sleep method's exceptions * fix copy-paste mistake in land state failure message
23 lines
810 B
Plaintext
23 lines
810 B
Plaintext
<launch>
|
|
<!-- Posix SITL MAVROS integration tests -->
|
|
|
|
<arg name="ns" default="/"/>
|
|
<arg name="headless" default="true"/>
|
|
<arg name="gui" default="false"/>
|
|
<arg name="est" default="ekf2"/>
|
|
<arg name="respawn_gazebo" default="true"/>
|
|
|
|
<include file="$(find px4)/launch/mavros_posix_sitl.launch">
|
|
<arg name="ns" value="$(arg ns)"/>
|
|
<arg name="headless" value="$(arg headless)"/>
|
|
<arg name="gui" value="$(arg gui)"/>
|
|
<arg name="vehicle" value="iris"/>
|
|
<arg name="est" value="$(arg est)"/>
|
|
<arg name="respawn_gazebo" value="$(arg respawn_gazebo)"/>
|
|
</include>
|
|
|
|
<group ns="$(arg ns)">
|
|
<test test-name="mavros_offboard_posctl_test" pkg="px4" type="mavros_offboard_posctl_test.py" time-limit="120.0"/>
|
|
</group>
|
|
</launch>
|