mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
556e03ef28
* predict touchdown in case of kill * remove message * make variable extern and rename
25 lines
702 B
XML
25 lines
702 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="ballistic_touchdown" dir="nav">
|
|
<doc>
|
|
<description>
|
|
Module that predicts the crash location if the motors would be
|
|
turned off, assuming a ballistic trajectory based on the current
|
|
velocity. Suggested use: trigger exceptions in the flight plan with
|
|
the ballistic_pos variable.
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>@navigation</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="ballistic_touchdown.h"/>
|
|
</header>
|
|
<init fun="ballistic_touchdown_init()"/>
|
|
<periodic fun="ballistic_touchdown_run()" autorun="TRUE"/>
|
|
<makefile target="ap|nps">
|
|
<file name="ballistic_touchdown.c"/>
|
|
</makefile>
|
|
</module>
|
|
|