35 lines
911 B
Plaintext
35 lines
911 B
Plaintext
|
<launch>
|
||
|
<arg name="port" />
|
||
|
<arg name="vis" default="true"/>
|
||
|
|
||
|
|
||
|
|
||
|
<group if="$(arg vis)">
|
||
|
<!--<param name="robot_description" command="$(find xacro)/xacro --inorder '$(find tracz_ground_station)/urdf/tracz.xacro'" />-->
|
||
|
|
||
|
<node pkg="robot_state_publisher" type="robot_state_publisher" name="robot_state_publisher" output="screen">
|
||
|
<param name="publish_frequency" type="double" value="50.0" />
|
||
|
</node>
|
||
|
|
||
|
|
||
|
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher">
|
||
|
<param name="use_gui" value="FALSE"/>
|
||
|
</node>
|
||
|
|
||
|
<node pkg="rqt_gui"
|
||
|
type="rqt_gui"
|
||
|
name="rqt_gui"
|
||
|
/>
|
||
|
</group>
|
||
|
|
||
|
<node pkg="tracz_ground_station"
|
||
|
type="tracz_core.py"
|
||
|
name="tracz_core"
|
||
|
output="screen"
|
||
|
required="true"
|
||
|
>
|
||
|
<param name="port" type="string" value="$(arg port)" />
|
||
|
</node>
|
||
|
|
||
|
|
||
|
</launch>
|