diff options
author | Drashna Jaelre <drashna@live.com> | 2019-08-02 14:02:40 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-08-30 15:01:52 -0700 |
commit | cf4575b94a3c65e6535a159fc71fc885aebc2620 (patch) | |
tree | 2354f2b7a200e02246a564afefedc32357e62b8e /lib/lufa/Demos/Device/LowLevel/RNDISEthernet/asf.xml | |
parent | 75ee8df19e0f14ba466f41ab673dde2fe2fdae9c (diff) |
Fix the LUFA lib to use a submodule instead of just files (#6245)
* Remove LUFA files
* Update descriptions for newer version of LUFA
* Create PR6245.md
* Fix CDC(Serial) type errors
* Fix missed merge conflict for AUDIO_DTYPE_CSInterface
Diffstat (limited to 'lib/lufa/Demos/Device/LowLevel/RNDISEthernet/asf.xml')
-rw-r--r-- | lib/lufa/Demos/Device/LowLevel/RNDISEthernet/asf.xml | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/lib/lufa/Demos/Device/LowLevel/RNDISEthernet/asf.xml b/lib/lufa/Demos/Device/LowLevel/RNDISEthernet/asf.xml deleted file mode 100644 index 7970b2b04a..0000000000 --- a/lib/lufa/Demos/Device/LowLevel/RNDISEthernet/asf.xml +++ /dev/null @@ -1,86 +0,0 @@ -<asf xmlversion="1.0"> - <project caption="RNDIS Ethernet Device Demo (Low Level APIs)" id="lufa.demos.device.lowlevel.rndis.example.avr8"> - <require idref="lufa.demos.device.lowlevel.rndis"/> - <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="RNDIS Ethernet Device Demo (Low Level APIs)" id="lufa.demos.device.lowlevel.rndis.example.xmega"> - <require idref="lufa.demos.device.lowlevel.rndis"/> - <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.rndis" caption="RNDIS Ethernet Device Demo (Low Level APIs)"> - <info type="description" value="summary"> - Microsoft RNDIS Ethernet networking device demo, implementing a basic HTTP webserver. 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"/> - <keyword value="RNDIS Class"/> - </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="doxyfile"/> - <build type="distribute" subtype="user-file" value="RNDISEthernet.txt"/> - <build type="distribute" subtype="user-file" value="LUFA RNDIS.inf"/> - - <build type="c-source" value="RNDISEthernet.c"/> - <build type="c-source" value="Descriptors.c"/> - <build type="c-source" value="Lib/ARP.c"/> - <build type="c-source" value="Lib/DHCP.c"/> - <build type="c-source" value="Lib/Ethernet.c"/> - <build type="c-source" value="Lib/ICMP.c"/> - <build type="c-source" value="Lib/IP.c"/> - <build type="c-source" value="Lib/ProtocolDecoders.c"/> - <build type="c-source" value="Lib/RNDIS.c"/> - <build type="c-source" value="Lib/TCP.c"/> - <build type="c-source" value="Lib/UDP.c"/> - <build type="c-source" value="Lib/Webserver.c"/> - <build type="header-file" value="RNDISEthernet.h"/> - <build type="header-file" value="Descriptors.h"/> - <build type="header-file" value="Lib/ARP.h"/> - <build type="header-file" value="Lib/DHCP.h"/> - <build type="header-file" value="Lib/Ethernet.h"/> - <build type="header-file" value="Lib/ICMP.h"/> - <build type="header-file" value="Lib/IP.h"/> - <build type="header-file" value="Lib/ProtocolDecoders.h"/> - <build type="header-file" value="Lib/RNDIS.h"/> - <build type="header-file" value="Lib/TCP.h"/> - <build type="header-file" value="Lib/UDP.h"/> - <build type="header-file" value="Lib/Webserver.h"/> - <build type="header-file" value="Lib/EthernetProtocols.h"/> - - <build type="module-config" subtype="path" value="Config"/> - <build type="module-config" subtype="required-header-file" value="AppConfig.h"/> - <build type="header-file" value="Config/AppConfig.h"/> - <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"/> - <require idref="lufa.drivers.peripheral.usart"/> - <require idref="lufa.drivers.misc.ansi"/> - </module> -</asf> |