mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-06 02:52:42 +08:00
* [nav] takeoff and land module Functions for takeoff and landing (fixedwing and rotorcraft), can be called from the flight plan or from the mission module. Two flight plan examples are provided. Various options are possible, see module description and header file. * [sim] ins_sim module is only doing INS, not AHRS add AHRS requirement for sim target, if needed provided by ahrs_sim
27 lines
738 B
XML
27 lines
738 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="ins_sim" dir="ins" task="estimation">
|
|
<doc>
|
|
<description>
|
|
Simulated INS.
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>@imu,@gps</depends>
|
|
<provides>ins</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="ins_gps_passthrough.h"/>
|
|
</header>
|
|
<init fun="ins_gps_passthrough_init()"/>
|
|
<makefile target="sim">
|
|
<file name="ins.c"/>
|
|
<file name="ins_gps_passthrough_utm.c"/>
|
|
<define name="INS_TYPE_H" value="modules/ins/ins_gps_passthrough.h" type="string"/>
|
|
<test firmware="rotorcraft">
|
|
<define name="PRIMARY_AHRS" value="ahrs_sim"/>
|
|
<define name="AHRS_TYPE_H" value="modules/ahrs/ahrs_sim.h" type="string"/>
|
|
</test>
|
|
</makefile>
|
|
</module>
|