mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="e_identification_fr">
|
|
<doc>
|
|
<description>Format and send via UART tracking data according to French regulation.</description>
|
|
<configure name="E_ID_PORT" value="UARTx" description="UART where the e-id device is connected to (UART1, UART2, etc"/>
|
|
<configure name="E_ID_BAUD" value="B115200" description="UART baud rate"/>
|
|
</doc>
|
|
<settings>
|
|
<dl_settings>
|
|
<dl_settings name="eID">
|
|
<dl_setting shortname="e_id_running" var="e_identification_started" min="0" step="1" max="1" values="STOPPED|RUNNING"/>
|
|
</dl_settings>
|
|
</dl_settings>
|
|
</settings>
|
|
<header>
|
|
<file name="e_identification_fr.h"/>
|
|
</header>
|
|
<init fun="e_identification_fr_init()"/>
|
|
<periodic fun="e_identification_fr_periodic()" freq="4" autorun="TRUE"/>
|
|
<makefile target="ap">
|
|
<configure name="E_ID_PORT" case="upper|lower"/>
|
|
<configure name="E_ID_BAUD" default="B115200"/>
|
|
<define name="USE_$(E_ID_PORT_UPPER)"/>
|
|
<define name="E_ID_DEV" value="$(E_ID_PORT_LOWER)"/>
|
|
<define name="$(E_ID_PORT_UPPER)_BAUD" value="$(E_ID_BAUD)"/>
|
|
<define name="USE_$(E_ID_PORT_UPPER)_RX" value="FALSE"/>
|
|
<file name="e_identification_fr.c"/>
|
|
</makefile>
|
|
</module>
|
|
|