mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
25 lines
638 B
XML
25 lines
638 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="gps_sim" dir="gps" task="sensors">
|
|
<doc>
|
|
<description>
|
|
Simulated GPS
|
|
For simple fixedwing OCaml simulator. Does not model any GPS inaccuracies/noise.
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>gps</depends>
|
|
<provides>gps</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="gps.h"/>
|
|
</header>
|
|
<init fun="gps_sim_init()"/>
|
|
<periodic fun="gps_sim_periodic_check()" freq="1." autorun="TRUE"/>
|
|
<makefile target="sim">
|
|
<file name="gps_sim.c"/>
|
|
<define name="GPS_TYPE_H" value="modules/gps/gps_sim.h" type="string"/>
|
|
<test/>
|
|
</makefile>
|
|
</module>
|