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/LUFA/StudioIntegration/lufa_platform.xml | |
parent | 75ee8df19e0f14ba466f41ab673dde2fe2fdae9c (diff) | |
download | qmk_firmware-cf4575b94a3c65e6535a159fc71fc885aebc2620.tar.gz |
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/LUFA/StudioIntegration/lufa_platform.xml')
-rw-r--r-- | lib/lufa/LUFA/StudioIntegration/lufa_platform.xml | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/lib/lufa/LUFA/StudioIntegration/lufa_platform.xml b/lib/lufa/LUFA/StudioIntegration/lufa_platform.xml deleted file mode 100644 index d33f435c6..000000000 --- a/lib/lufa/LUFA/StudioIntegration/lufa_platform.xml +++ /dev/null @@ -1,60 +0,0 @@ -<!-- - LUFA Library - Copyright (C) Dean Camera, 2017. - - dean [at] fourwalledcubicle [dot] com - www.lufa-lib.org ---> - -<!-- Atmel Studio framework integration file --> - -<lufa> - <asf> - <select-by-device id="lufa.platform" caption="LUFA Platform Specific Support"> - <module type="service" id="lufa.platform#avr8" caption="LUFA Platform Specific Support - AVR8"> - <device-support-alias value="lufa_avr8"/> - - <build type="define" name="ARCH" value="ARCH_AVR8"/> - - <build type="doxygen-entry-point" value="Group_PlatformDrivers"/> - - <build type="include-path" value=".."/> - <build type="header-file" subtype="api" value="Platform/Platform.h"/> - - <require idref="lufa.common"/> - </module> - - <module type="service" id="lufa.platform#xmega" caption="LUFA Platform Specific Support - XMEGA"> - <device-support-alias value="lufa_xmega"/> - - <build type="define" name="ARCH" value="ARCH_XMEGA"/> - - <build type="doxygen-entry-point" value="Group_PlatformDrivers"/> - - <build type="include-path" value=".."/> - <build type="header-file" subtype="api" value="Platform/Platform.h"/> - - <build type="distribute" value="Platform/XMEGA/XMEGAExperimentalInfo.txt" subtype="license"/> - - <require idref="lufa.platform.xmega"/> - <require idref="lufa.common"/> - </module> - - <module type="service" id="lufa.platform#uc3" caption="LUFA Platform Specific Support - UC3"> - <device-support-alias value="lufa_uc3"/> - - <build type="define" name="ARCH" value="ARCH_UC3"/> - - <build type="doxygen-entry-point" value="Group_PlatformDrivers"/> - - <build type="include-path" value=".."/> - <build type="header-file" subtype="api" value="Platform/Platform.h"/> - - <build type="distribute" value="Platform/UC3/UC3ExperimentalInfo.txt" subtype="license"/> - - <require idref="lufa.platform.uc3"/> - <require idref="lufa.common"/> - </module> - </select-by-device> - </asf> -</lufa> |