Files
paparazzi/conf/modules/usb_serial_stm32_example1.xml
T
Fabien-B 5e2c9e488a Usb add serial (#2966)
* [USB Serial] Cleanup serial USB configuration.
* [USB Serial] Add 2nd serial.
* [USB Serial] Add udev symlinks.
* [ChibiOS Mass storage] Change USB stop sequence. (Seems to works better this way)
* [USB Serial] Fix thread blocked when port is not opened.
* [USB Serial] Adapt number of CDC to the number of endpoints.
      STM32F7: 2 serial
      STM32F4: 1 serial
* Mark telemetry_transparent_usb as deprecated.
2023-02-15 22:04:53 +01:00

27 lines
719 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>
<dep>
<depends>uart</depends>
</dep>
<header>
<file name="usb_serial_stm32.h"/>
</header>
<init fun="init_usb_serial()"/>
<event fun="event_usb_serial()"/>
<makefile target="!nps|sim">
<define name="USE_USB_SERIAL"/>
<file name="usb_serial_stm32_example1.c"/>
</makefile>
</module>