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
28 lines
740 B
XML
28 lines
740 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="udp" dir="mcu_periph" task="mcu">
|
|
<doc>
|
|
<description>
|
|
General UDP driver
|
|
To activate a specific UDP peripheral, define flag USE_UDPX where X is your UDP peripheral number
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>mcu</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="udp.h" dir="mcu_periph"/>
|
|
</header>
|
|
<makefile>
|
|
<define name="USE_UDP"/>
|
|
<file name="udp.c" dir="mcu_periph"/>
|
|
<file_arch name="udp_arch.c" dir="mcu_periph"/>
|
|
<file name="udp_socket.c" dir="arch/linux" cond="ifeq ($(ARCH), linux)"/>
|
|
</makefile>
|
|
<makefile target="nps">
|
|
<include name="arch/linux"/>
|
|
<file name="udp_socket.c" dir="arch/linux"/>
|
|
</makefile>
|
|
</module>
|
|
|