diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-10-30 19:34:31 +0100 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-10-30 19:34:31 +0100 |
commit | b7b6f212e9d9ff498d761b80cd12fab8b24d8167 (patch) | |
tree | 1505b10366a9f3a9317ca53bdb696f1de8869f2f /Demos/Device/LowLevel/BulkVendor/asf.xml | |
parent | 14e44b626f8777de6cf9fba4ff410d7cccc78e67 (diff) | |
download | lufa-b7b6f212e9d9ff498d761b80cd12fab8b24d8167.tar.gz lufa-b7b6f212e9d9ff498d761b80cd12fab8b24d8167.tar.bz2 lufa-b7b6f212e9d9ff498d761b80cd12fab8b24d8167.zip |
Add new Bulk Vendor device demo application.
Diffstat (limited to 'Demos/Device/LowLevel/BulkVendor/asf.xml')
-rw-r--r-- | Demos/Device/LowLevel/BulkVendor/asf.xml | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Demos/Device/LowLevel/BulkVendor/asf.xml b/Demos/Device/LowLevel/BulkVendor/asf.xml new file mode 100644 index 000000000..ec1447a32 --- /dev/null +++ b/Demos/Device/LowLevel/BulkVendor/asf.xml @@ -0,0 +1,60 @@ +<asf xmlversion="1.0"> + <project caption="Bulk Vendor Device Demo (Low Level APIs)" id="lufa.demos.device.lowlevel.vendor.example.avr8"> + <require idref="lufa.demos.device.lowlevel.vendor"/> + <require idref="lufa.boards.dummy.avr8"/> + <generator value="as5_8"/> + + <device-support value="at90usb1287"/> + <config name="lufa.drivers.board.name" value="none"/> + + <build type="define" name="F_CPU" value="16000000UL"/> + <build type="define" name="F_USB" value="16000000UL"/> + </project> + + <project caption="Bulk Vendor Device Demo (Low Level APIs)" id="lufa.demos.device.lowlevel.vendor.example.xmega"> + <require idref="lufa.demos.device.lowlevel.vendor"/> + <require idref="lufa.boards.dummy.xmega"/> + <generator value="as5_8"/> + + <device-support value="atxmega128a1u"/> + <config name="lufa.drivers.board.name" value="none"/> + + <build type="define" name="F_CPU" value="32000000UL"/> + <build type="define" name="F_USB" value="48000000UL"/> + </project> + + <module type="application" id="lufa.demos.device.lowlevel.vendor" caption="Bulk Vendor Device Demo (Low Level APIs)"> + <info type="description" value="summary"> + Bulk Vendor Device demo, implementing a basic USB device with vendor-specific endpoints for custom protocol implementations. This demo uses the Low Level LUFA APIs to manually implement a USB Class for demonstration purposes without using the simpler in-built LUFA Class Driver APIs. + </info> + + <info type="gui-flag" value="move-to-root"/> + + <info type="keyword" value="Technology"> + <keyword value="Low Level APIs"/> + <keyword value="USB Device"/> + </info> + + <device-support-alias value="lufa_avr8"/> + <device-support-alias value="lufa_xmega"/> + <device-support-alias value="lufa_uc3"/> + + <build type="distribute" subtype="user-file" value="BulkVendor.txt"/> + <build type="distribute" subtype="directory" value="HostTestApp"/> + <build type="distribute" subtype="directory" value="WindowsDriver"/> + + <build type="c-source" value="BulkVendor.c"/> + <build type="c-source" value="Descriptors.c"/> + <build type="header-file" value="BulkVendor.h"/> + <build type="header-file" value="Descriptors.h"/> + + <build type="module-config" subtype="path" value="Config"/> + <build type="header-file" value="Config/LUFAConfig.h"/> + + <require idref="lufa.common"/> + <require idref="lufa.platform"/> + <require idref="lufa.drivers.usb"/> + <require idref="lufa.drivers.board"/> + <require idref="lufa.drivers.board.leds"/> + </module> +</asf> |