-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathactuator_protocol.xml
executable file
·61 lines (50 loc) · 1.59 KB
/
actuator_protocol.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0"?>
<PropertyList>
<generic>
<input>
<line_separator>newline</line_separator>
<var_separator>tab</var_separator>
<!--
The plane's current mode. Set it to one
of the following:
off
Do nothing.
to/ga
The plane will complete its pre-takeoff checklist,
proceed to take off and reach a safe altitude
and start to encircle the surrounding area.
cruise
The plane will adjust to the desired heading and
desired altitude. If no altitude is given, it will just
climb to 30000 ft. It will then accelerate to cruising
speed (around 300 knots).
land
The plane will attempt to land at a local airport (feel free
to add a destination property containing the destination airport)
-->
<chunk>
<name>/uav/planner/mode</name>
<node>/uav/planner/mode</node>
<type>string</type>
</chunk>
<!--
Set the plane's desired heading. If you'd
like to add a deadline as well, we could
add that.
-->
<chunk>
<name>/uav/planner/heading</name>
<node>/uav/planner/heading</node>
<type>float</type>
</chunk>
<!--
Set the plane's desired altitude
-->
<chunk>
<name>/uav/planner/altitude</name>
<node>/uav/planner/altitude</node>
<type>int</type>
</chunk>
</input>
</generic>
</PropertyList>