mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
41451d5422
- the exact same basic model is now a NPS FDM - sim target still woks, it is just an alias to NPS with the proper FDM - the old ocaml files are removed - AHRS and INS are bypassed, since the accelerations are not well calculated by the model
31 lines
937 B
XML
31 lines
937 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="gps_nps" dir="gps" task="sensors">
|
|
<doc>
|
|
<description>
|
|
Simulated GPS for NPS.
|
|
For NPS simulator. Can model GPS noise, bias and latency.
|
|
The GPS sensor configuration is done in the header file referenced by NPS_SENSORS_PARAMS.
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>gps</depends>
|
|
<provides>gps</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="gps.h"/>
|
|
</header>
|
|
<init fun="gps_nps_init()"/>
|
|
<periodic fun="gps_nps_periodic_check()" freq="1." autorun="TRUE"/>
|
|
<makefile target="sim|nps">
|
|
<file name="gps_sim_nps.c"/>
|
|
<define name="GPS_TYPE_H" value="modules/gps/gps_sim_nps.h" type="string"/>
|
|
<test>
|
|
<define name="PERIODIC_FREQUENCY" value="500"/>
|
|
<include name="../simulator/nps"/>
|
|
<include name="../../conf/simulator/nps"/>
|
|
<shell cmd="pkg-config glib-2.0 --cflags"/>
|
|
</test>
|
|
</makefile>
|
|
</module>
|