Files
paparazzi/conf/flight_plans/huit.xml
T
Gautier Hattenberger 363dec8693 Autopilot refactor (#2009)
* [autopilot] refactor autopilot API for both firmwares

With this, fixedwing and rotorcraft are mostly using the same interface
for the autopilot. Some specific code and messages handling are still
firmware dependent.
A large part of the autopilot logic of the fixedwing is moved from
main_ap to autopilot_static.
More getter/setter functions are provided.

* [autopilot] update the rest of the system and the conf

for using the refactored autopilot API

* [autopilot] fix some errors from CI servers

* [actuators] use dummy actuators module to prevent autoloading

* Rename Bart_heliDD_INDI.xml to tudelft_bs_helidd_indi.xml

* Rename Bart_heliDD_pid.xml to tudelft_bs_helidd_pid.xml

* Delete tudelft_course2016_bebop_colorfilter.xml

* Delete tudelft_course2016_bebop_avoider.xml

* [actuators] don't autoload actuators when set to 'none'

* [gcs] autodetect firmware for strip mode button
2017-02-19 11:45:57 +01:00

31 lines
846 B
XML

<flight_plan name="8 - ricou"
lat0="43.237535" lon0="1.327747"
ref_pos="ricou"
qfu="225" ground_alt="390" security_height="25" alt = "490">
<waypoints>
<waypoint name="HOME" x="-30" y="-100" alt="492"/>
<waypoint x="150" y="-100"/>
<waypoint x="150" y="-150"/>
<waypoint x="-150" y="-100"/>
<waypoint x="-150" y="-150"/>
</waypoints>
<blocks>
<block name="init">
<while cond="(autopilot.flight_time)"></while>
<heading course="QFU" vmode="climb" climb="2.0" until="(GetPosAlt() > SECURITY_ALT)"/>
</block>
<block name="balaye">
<while>
<go wp="1" hmode="route" vmode="alt" alt="465"/>
<go wp="2" hmode="direct" vmode="alt" alt="465"/>
<go wp="3" hmode="route" vmode="alt" alt="465"/>
<go wp="4" hmode="direct" vmode="alt" alt="465"/>
</while>
</block>
</blocks>
</flight_plan>