mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
74f8b74624
* First shot towards a separate HITL target * Changes in HITL - still doesn't compile * Added makefile selection * HITL target works for fixedwing and rotorcraft - still needs cleanup and TLC * Removed info messages from compilation process
22 lines
699 B
XML
22 lines
699 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="gps_nps" dir="gps">
|
|
<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>
|
|
<autoload name="gps"/>
|
|
<header>
|
|
<file name="gps.h" dir="subsystems"/>
|
|
</header>
|
|
<init fun="gps_nps_init()"/>
|
|
<periodic fun="gps_nps_periodic_check()" freq="1." autorun="TRUE"/>
|
|
<makefile target="nps|hitl">
|
|
<file name="gps_sim_nps.c" dir="subsystems/gps"/>
|
|
<define name="GPS_TYPE_H" value="subsystems/gps/gps_sim_nps.h" type="string"/>
|
|
</makefile>
|
|
</module>
|