mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-22 04:13:39 +08:00
41451d5422
- the exact same basic model is now a NPS FDM - sim target still woks, it is just an alias to NPS with the proper FDM - the old ocaml files are removed - AHRS and INS are bypassed, since the accelerations are not well calculated by the model
28 lines
744 B
XML
28 lines
744 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="sim|nps">
|
|
<include name="arch/linux"/>
|
|
<file name="udp_socket.c" dir="arch/linux"/>
|
|
</makefile>
|
|
</module>
|
|
|