mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-06 02:52:42 +08:00
* [fix] fix some bugs small errors from compilation tests * Attempt to fix the detection of failing tests Side effect: the file issues.md is not produced anymore, but still available in stdout, so needs a manual copy if needed
28 lines
826 B
XML
28 lines
826 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
|
|
<module name="uart" dir="mcu_periph" task="mcu">
|
|
<doc>
|
|
<description>
|
|
General UART driver
|
|
To activate a specific UART peripheral, define flag USE_UARTX where X is your UART peripheral number
|
|
</description>
|
|
</doc>
|
|
<dep>
|
|
<depends>mcu,threads</depends>
|
|
</dep>
|
|
<header>
|
|
<file name="uart.h" dir="mcu_periph"/>
|
|
</header>
|
|
<makefile>
|
|
<file name="uart.c" dir="mcu_periph"/>
|
|
<file_arch name="uart_arch.c" dir="mcu_periph"/>
|
|
<file name="serial_port.c" dir="arch/linux" cond="ifeq ($(ARCH), linux)"/>
|
|
<file_arch name="usb_ser_hw.c" dir="." cond="ifneq ($(filter $(ARCH),chibios stm32),)"/>
|
|
</makefile>
|
|
<makefile target="sim|nps">
|
|
<include name="arch/linux"/>
|
|
<file name="serial_port.c" dir="arch/linux"/>
|
|
</makefile>
|
|
</module>
|
|
|