mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
4ae40567ed
- old way (based on ins_vectornav) is not supported anymore - directly send sensor data and receive commands with a dedicated link - examples with USB link for better results - update sphinx documentation - compilation in a single build
31 lines
933 B
XML
31 lines
933 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="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>
|