mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
4ae40567ed
- 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
23 lines
635 B
XML
23 lines
635 B
XML
<!DOCTYPE module SYSTEM "../module.dtd">
|
|
|
|
<module name="hitl" dir="targets" task="core">
|
|
<doc>
|
|
<description>
|
|
Hardware In The Loop simulation
|
|
Based on NPS simulator
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>math,targets/nps_common</depends>
|
|
</dep>
|
|
<makefile target="hitl">
|
|
<configure name="SRC_FIRMWARE" default="firmwares/fixedwing"/>
|
|
<configure name="PERIODIC_FREQUENCY" default="60"/>
|
|
<define name="PERIODIC_FREQUENCY" value="$(PERIODIC_FREQUENCY)"/>
|
|
<define name="HITL"/>
|
|
<include name="$(SRC_FIRMWARE)"/>
|
|
<file name="nps_main_hitl.c" dir="$(NPS_DIR)"/>
|
|
</makefile>
|
|
</module>
|
|
|