mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-12 01:50:11 +08:00
62646d68de
Add two new items in module's dependency: - recommends: a recommended module tells the sorting algo that if the module is found, it should be sorted accordingly. It is useful for optional dependencies, like shell or mission in some modules - suggests: if a functionality is not provided by the user, a module can suggest a list of modules that can provide them. It is a convenient way to have "default" modules. As a result the former autoload node is removed and replaced by suggested modules.
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="telemetry_xbee_api" dir="datalink" task="datalink">
|
|
<doc>
|
|
<description>
|
|
Telemetry using XBEE API protocol over UART
|
|
</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"/>
|
|
<define name="XBEE_CHANNEL" value="0C" description="set Xbee channel (from 0C to 17)."/>
|
|
</doc>
|
|
<dep>
|
|
<depends>uart,datalink_common</depends>
|
|
<provides>datalink,telemetry</provides>
|
|
</dep>
|
|
<header>
|
|
<file name="xbee_dl.h"/>
|
|
</header>
|
|
<init fun="xbee_dl_init()"/>
|
|
<event fun="xbee_dl_event()"/>
|
|
<makefile target="!sim|nps|hitl">
|
|
<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="XBEE_UART" value="$(MODEM_PORT_LOWER)"/>
|
|
<define name="XBEE_BAUD" value="$(MODEM_BAUD)"/>
|
|
<define name="DOWNLINK_TRANSPORT" value="xbee_tp"/>
|
|
<define name="DATALINK" value="XBEE"/>
|
|
<file name="xbee_dl.c"/>
|
|
<file name="xbee_transport.c" dir="pprzlink/src"/>
|
|
<test>
|
|
<define name="DOWNLINK_DEVICE" value="uart1"/>
|
|
<define name="XBEE_UART" value="uart1"/>
|
|
<define name="XBEE_BAUD" value="B57600"/>
|
|
<define name="USE_UART1"/>
|
|
</test>
|
|
</makefile>
|
|
</module>
|
|
|