66 lines
2.0 KiB
XML
66 lines
2.0 KiB
XML
<?xml version="1.0"?>
|
|
<launch>
|
|
<arg name='test' default="none"/>
|
|
<arg name="mav_name" default="spiri"/>
|
|
<arg name="command_input" default="1" />
|
|
<arg name="log_output" default="screen" />
|
|
<arg name="fcu_protocol" default="v2.0" />
|
|
<arg name="respawn_mavros" default="false" />
|
|
<arg name="gazebo_gui" default="false" />
|
|
<arg name="fcu_url" default="udp://:14549@192.168.1.91:14554"/>
|
|
<arg name="gcs_url" default="udp-b://127.0.0.1:14555@14550" />
|
|
<arg name="connection_type" default="wifi"/>
|
|
|
|
<group ns="mocap">
|
|
<rosparam file="$(find oscillation_ctrl)/config/mocap_config.yaml" />
|
|
</group>
|
|
|
|
<group ns="status">
|
|
<rosparam file="$(find oscillation_ctrl)/config/noCtrl_param.yaml" />
|
|
<param name="test_type" value="$(arg test)"/>
|
|
</group>
|
|
<group if="$(eval connection_type == 'ethernet')">
|
|
<param name="local_ip" value="192.168.1.175"/>
|
|
</group>
|
|
<group if="$(eval connection_type == 'wifi')">
|
|
<param name="local_ip" value="192.168.1.135"/>
|
|
</group>
|
|
<node
|
|
pkg="oscillation_ctrl"
|
|
type="mocap_offb_node"
|
|
name="mocap_offb_node"
|
|
launch-prefix="xterm -e"
|
|
/>
|
|
<node
|
|
pkg="oscillation_ctrl"
|
|
type="wpoint_tracker.py"
|
|
name="waypoints_server"
|
|
/>
|
|
<group if="$(eval test != 'none')">
|
|
<node
|
|
pkg="oscillation_ctrl"
|
|
type="perform_test.py"
|
|
name="test_node"
|
|
launch-prefix="xterm -e"
|
|
/>
|
|
</group>
|
|
<node
|
|
pkg="oscillation_ctrl"
|
|
type="Mocap_Bridge.py"
|
|
name="localize_node"
|
|
launch-prefix="xterm -e"
|
|
/>
|
|
<!-- Cortex bridge launch -->
|
|
<include file="$(find cortex_bridge)/launch/cortex_bridge.launch">
|
|
<!--param name="local_ip" value="$(param local_ip)" /-->
|
|
</include>
|
|
<!-- MAVROS launch -->
|
|
<include file="$(find mavros)/launch/px4.launch">
|
|
<arg name="pluginlists_yaml" value="$(find oscillation_ctrl)/config/px4_pluginlists.yaml" />
|
|
<arg name="config_yaml" value="$(find oscillation_ctrl)/config/px4_config.yaml" />
|
|
<arg name="fcu_protocol" value="$(arg fcu_protocol)" />
|
|
<arg name="fcu_url" value="$(arg fcu_url)" />
|
|
<arg name="gcs_url" value="$(arg gcs_url)" />
|
|
</include>
|
|
</launch>
|