mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
4ad23864c8
PathToNext) and add a Stop value to indicate not to advance to the next waypoint. This is essentially a perament loiter to the pathfollower (I think) but it's really just to have the ability to "delete" waypoints.
14 lines
820 B
XML
14 lines
820 B
XML
<xml>
|
|
<object name="Waypoint" singleinstance="false" settings="false">
|
|
<description>A waypoint the aircraft can try and hit. Used by the @ref PathPlanner module</description>
|
|
<field name="Position" units="m" type="float" elementnames="North, East, Down"/>
|
|
<field name="Velocity" units="m/s" type="float" elementnames="North, East, Down"/>
|
|
<field name="YawDesired" units="deg" type="float" elements="1"/>
|
|
<field name="Action" units="" type="enum" elements="1" options="PathToNext,EndpointToNext,RTH,Loiter10s,Land,Stop"/>
|
|
<access gcs="readwrite" flight="readwrite"/>
|
|
<telemetrygcs acked="false" updatemode="manual" period="0"/>
|
|
<telemetryflight acked="false" updatemode="periodic" period="4000"/>
|
|
<logging updatemode="periodic" period="1000"/>
|
|
</object>
|
|
</xml>
|