Files
paparazzi/conf/modules/gps_sim_hitl.xml
T
Felix Ruess 6bf56d7079 [gps] autoload gps_sim and gps_nps modules
from the "normal" gps modules so that you don't have to add them manually in your airframe to get the simulation running
2016-06-15 21:22:10 +02:00

29 lines
938 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="gps_sim_hitl">
<doc>
<description>
Sim HITL GPS
Simulate GPS for HITL (HardwareInTheLoop) from rotorcrafts horizontal/vertical reference system.
</description>
<configure name="GPS_LED" value="2" description="LED number to indicate fix or none"/>
</doc>
<autoload name="gps_nps"/>
<header>
<file name="gps.h" dir="subsystems"/>
</header>
<init fun="gps_sim_hitl_init()"/>
<event fun="gps_sim_hitl_event()"/>
<makefile target="ap" firmware="rotorcraft">
<configure name="GPS_LED" default="none"/>
<file name="gps.c" dir="subsystems"/>
<file name="gps_sim_hitl.c" dir="subsystems/gps"/>
<define name="HITL"/>
<define name="USE_GPS"/>
<define name="GPS_LED" value="$(GPS_LED)" cond="ifneq ($(GPS_LED),none)"/>
<define name="GPS_TYPE_H" value="subsystems/gps/gps_sim_hitl.h" type="string"/>
</makefile>
</module>