Files
paparazzi/conf/modules/sim.xml
Gautier Hattenberger addc8d051c [cleaning] removing some old stuff (#2696)
* [cleaning] removing some old stuff

- infrared sensors and related ahrs
- mkk and asctec actuators
- old carto modules
- fix bebop actuators for NPS
- clean airframe and conf

* [conf] add back asctec_v2 actuators that is still being used
2021-04-16 17:56:16 +02:00

30 lines
901 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="sim" dir="simulator">
<doc>
<description>
Basic Simulator (SIM)
Bindings between embedded autopilot code and a flight dynamic model (FDM).
FDM and low level code is written in OCaml.
Only for fixed-wing.
</description>
</doc>
<header/>
<makefile target="sim">
<define name="SITL"/>
<raw>
UNAME = $(shell uname -s)
ifeq ("$(UNAME)","Darwin")
sim.CFLAGS += $(shell if test -d /opt/paparazzi/include; then echo "-I/opt/paparazzi/include"; elif test -d /opt/local/include; then echo "-I/opt/local/include"; fi)
endif
</raw>
<file_arch name="sim_ap.c" dir="."/>
<file_arch name="sim_gps.c" dir="."/>
<file_arch name="sim_adc_generics.c" dir="."/>
<file_arch name="sim_ahrs.c" dir="."/>
<file_arch name="sim_airspeed.c" dir="."/>
</makefile>
</module>