Files
paparazzi/conf/modules/nav_basic_rotorcraft.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

27 lines
796 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="nav_basic_rotorcraft" dir="nav" task="control">
<doc>
<description>
Standard navigation patterns and flight plan handling for rotorcraft
</description>
</doc>
<dep>
<depends>nav_rotorcraft</depends>
<provides>navigation</provides>
</dep>
<header>
<file name="nav_rotorcraft_base.h"/>
</header>
<init fun="nav_rotorcraft_init()"/>
<makefile target="ap|nps" firmware="rotorcraft">
<file name="nav_rotorcraft_base.c"/>
<test firmware="rotorcraft">
<configure name="SRC_FIRMWARE" value="firmwares/rotorcraft"/>
<define name="DOWNLINK_TRANSPORT" value="pprz_tp"/>
<define name="DOWNLINK_DEVICE" value="uart0"/>
<define name="USE_UART0"/>
</test>
</makefile>
</module>