Files
paparazzi/conf/modules/usb_serial_stm32_example1.xml
T
podhrmic a008da49b4 [stm32] usb_serial: CDC USB Device driver for STM32F1/4
add usb_serial implementation and using that for telemetry_usb

closes #998
2014-12-02 23:12:22 +01:00

28 lines
732 B
XML

<!DOCTYPE module SYSTEM "module.dtd">
<module name="usb_serial_stm32_example1" dir="com">
<doc>
<description>
Serial-over-USB console on STM32.
Example of USB-serial module on STM32 architecture, using libopencm3 library.
This example emulates a console - i.e. user can send commands to Paparazzi and get response
To be used with Lisa M/MX 2.1
</description>
</doc>
<header>
<file name="usb_serial_stm32.h"/>
</header>
<init fun="init_usb_serial()"/>
<event fun="event_usb_serial()"/>
<makefile target="ap">
<raw>
ap.srcs += $(SRC_ARCH)/usb_ser_hw.c
</raw>
<define name="USE_USB_SERIAL"/>
<file name="usb_serial_stm32_example1.c"/>
</makefile>
</module>