Files
paparazzi/conf/modules/fdm_fixedwing_sim.xml
Gautier Hattenberger 41451d5422 [sim] moving the old ocaml simulator to NPS (#3167)
- the exact same basic model is now a NPS FDM
- sim target still woks, it is just an alias to NPS with the proper FDM
- the old ocaml files are removed
- AHRS and INS are bypassed, since the accelerations are not well calculated by the model
2023-11-07 10:21:12 +01:00

20 lines
596 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="fdm_fixedwing_sim" dir="fdm">
<doc>
<description>
Basic fixedwing FDM for NPS simulator
This flight dynamic model is the copy of the legacy simulator that was written in OCaml.
Its only purpose is to allow to test the flight plans with a very simple airplane model.
</description>
</doc>
<header/>
<makefile target="sim|nps|hitl">
<define name="NPS_BYPASS_AHRS" value="TRUE"/>
<define name="NPS_BYPASS_INS" value="TRUE"/>
<file name="nps_fdm_fixedwing_sim.c" dir="nps"/>
</makefile>
</module>