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

31 lines
1.0 KiB
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="telemetry_secure_common" dir="datalink" task="datalink">
<doc>
<description>
Telemetry using secure PPRZ protocol - common parts
</description>
<configure name="MODEM_PORT" value="UARTx" description="UART where the modem is connected to (UART1, UART2, etc)"/>
<configure name="MODEM_BAUD" value="B57600" description="UART baud rate"/>
</doc>
<dep>
<depends>uart,datalink_common</depends>
<provides>datalink,telemetry</provides>
<suggests>telemetry_nps_secure</suggests>
</dep>
<makefile target="!sim|nps">
<configure name="MODEM_PORT" case="upper|lower"/>
<define name="USE_$(MODEM_PORT_UPPER)"/>
<define name="$(MODEM_PORT_UPPER)_BAUD" value="$(MODEM_BAUD)"/>
<define name="DOWNLINK_DEVICE" value="$(MODEM_PORT_LOWER)"/>
<define name="PPRZ_UART" value="$(MODEM_PORT_LOWER)"/>
</makefile>
<makefile target="!fbw|sim">
<define name="DATALINK" value="PPRZ"/>
<file name="pprz_transport.c" dir="pprzlink/src"/>
</makefile>
</module>