Files
paparazzi/conf/modules/gps_nps.xml
T
Gautier Hattenberger 4ae40567ed [hitl] rewrite support for hardware in the loop simulation (#3146)
- 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
2023-10-31 14:48:55 +01:00

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>