Files
paparazzi/conf/modules/ballistic_touchdown.xml
T
Ewoud Smeur 556e03ef28 [module] predict touchdown in case of kill (#3039)
* predict touchdown in case of kill

* remove message

* make variable extern and rename
2023-09-14 17:06:52 +02:00

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>