From 60b30c036397cb5627fa374bb930794b225daa29 Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Fri, 7 Jul 2017 11:55:23 -0400 Subject: Squashed 'lib/lufa/' content from commit 385d40300 git-subtree-dir: lib/lufa git-subtree-split: 385d4030035dbaf41591309dbde47653bd03841b --- .gitignore | 15 + Bootloaders/CDC/BootloaderAPI.c | 75 + Bootloaders/CDC/BootloaderAPI.h | 58 + Bootloaders/CDC/BootloaderAPITable.S | 91 + Bootloaders/CDC/BootloaderCDC.c | 673 ++++ Bootloaders/CDC/BootloaderCDC.h | 144 + Bootloaders/CDC/BootloaderCDC.txt | 242 ++ Bootloaders/CDC/Config/AppConfig.h | 50 + Bootloaders/CDC/Config/LUFAConfig.h | 93 + Bootloaders/CDC/Descriptors.c | 244 ++ Bootloaders/CDC/Descriptors.h | 158 + Bootloaders/CDC/LUFA CDC Bootloader.inf | 66 + Bootloaders/CDC/asf.xml | 161 + Bootloaders/CDC/doxyfile | 2396 +++++++++++ Bootloaders/CDC/makefile | 62 + Bootloaders/DFU/BootloaderAPI.c | 76 + Bootloaders/DFU/BootloaderAPI.h | 58 + Bootloaders/DFU/BootloaderAPITable.S | 91 + Bootloaders/DFU/BootloaderDFU.c | 891 +++++ Bootloaders/DFU/BootloaderDFU.h | 216 + Bootloaders/DFU/BootloaderDFU.txt | 235 ++ Bootloaders/DFU/Config/AppConfig.h | 48 + Bootloaders/DFU/Config/LUFAConfig.h | 93 + Bootloaders/DFU/Descriptors.c | 185 + Bootloaders/DFU/Descriptors.h | 194 + Bootloaders/DFU/asf.xml | 156 + Bootloaders/DFU/doxyfile | 2396 +++++++++++ Bootloaders/DFU/makefile | 62 + Bootloaders/HID/BootloaderHID.c | 198 + Bootloaders/HID/BootloaderHID.h | 71 + Bootloaders/HID/BootloaderHID.txt | 105 + Bootloaders/HID/Config/LUFAConfig.h | 93 + Bootloaders/HID/Descriptors.c | 187 + Bootloaders/HID/Descriptors.h | 80 + Bootloaders/HID/HostLoaderApp/.gitignore | 1 + Bootloaders/HID/HostLoaderApp/Makefile | 40 + Bootloaders/HID/HostLoaderApp/Makefile.bsd | 21 + Bootloaders/HID/HostLoaderApp/gpl3.txt | 674 ++++ Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c | 1013 +++++ .../HostLoaderApp_Python/hid_bootloader_loader.py | 120 + Bootloaders/HID/asf.xml | 123 + Bootloaders/HID/doxyfile | 2398 ++++++++++++ Bootloaders/HID/makefile | 55 + Bootloaders/MassStorage/BootloaderAPI.c | 76 + Bootloaders/MassStorage/BootloaderAPI.h | 63 + Bootloaders/MassStorage/BootloaderAPITable.S | 102 + Bootloaders/MassStorage/BootloaderMassStorage.c | 263 ++ Bootloaders/MassStorage/BootloaderMassStorage.h | 99 + Bootloaders/MassStorage/BootloaderMassStorage.txt | 240 ++ Bootloaders/MassStorage/Config/AppConfig.h | 47 + Bootloaders/MassStorage/Config/LUFAConfig.h | 93 + Bootloaders/MassStorage/Descriptors.c | 157 + Bootloaders/MassStorage/Descriptors.h | 88 + Bootloaders/MassStorage/Lib/SCSI.c | 294 ++ Bootloaders/MassStorage/Lib/SCSI.h | 84 + Bootloaders/MassStorage/Lib/VirtualFAT.c | 482 +++ Bootloaders/MassStorage/Lib/VirtualFAT.h | 302 ++ Bootloaders/MassStorage/asf.xml | 156 + Bootloaders/MassStorage/doxyfile | 2396 +++++++++++ Bootloaders/MassStorage/makefile | 75 + Bootloaders/Printer/BootloaderAPI.c | 75 + Bootloaders/Printer/BootloaderAPI.h | 56 + Bootloaders/Printer/BootloaderAPITable.S | 91 + Bootloaders/Printer/BootloaderPrinter.c | 487 +++ Bootloaders/Printer/BootloaderPrinter.h | 108 + Bootloaders/Printer/BootloaderPrinter.txt | 202 + Bootloaders/Printer/Config/LUFAConfig.h | 93 + Bootloaders/Printer/Descriptors.c | 194 + Bootloaders/Printer/Descriptors.h | 96 + Bootloaders/Printer/asf.xml | 159 + Bootloaders/Printer/doxyfile | 2396 +++++++++++ Bootloaders/Printer/makefile | 62 + Bootloaders/makefile | 46 + BuildTests/BoardDriverTest/Board/Board.h | 82 + BuildTests/BoardDriverTest/Board/Buttons.h | 92 + BuildTests/BoardDriverTest/Board/Dataflash.h | 197 + BuildTests/BoardDriverTest/Board/Joystick.h | 104 + BuildTests/BoardDriverTest/Board/LEDs.h | 132 + BuildTests/BoardDriverTest/BoardDeviceMap.cfg | 89 + BuildTests/BoardDriverTest/Test.c | 115 + BuildTests/BoardDriverTest/makefile | 69 + BuildTests/BoardDriverTest/makefile.test | 35 + BuildTests/BootloaderTest/BootloaderDeviceMap.cfg | 167 + BuildTests/BootloaderTest/makefile | 65 + BuildTests/ModuleTest/Dummy.S | 41 + BuildTests/ModuleTest/Modules.h | 56 + BuildTests/ModuleTest/Test_C.c | 31 + BuildTests/ModuleTest/Test_CPP.cpp | 31 + BuildTests/ModuleTest/makefile | 67 + BuildTests/ModuleTest/makefile.test | 94 + BuildTests/SingleUSBModeTest/Dummy.S | 42 + BuildTests/SingleUSBModeTest/Test.c | 32 + BuildTests/SingleUSBModeTest/makefile | 57 + BuildTests/SingleUSBModeTest/makefile.test | 75 + BuildTests/StaticAnalysisTest/makefile | 47 + BuildTests/makefile | 24 + Demos/Device/ClassDriver/AudioInput/AudioInput.c | 274 ++ Demos/Device/ClassDriver/AudioInput/AudioInput.h | 94 + Demos/Device/ClassDriver/AudioInput/AudioInput.txt | 92 + .../ClassDriver/AudioInput/Config/AppConfig.h | 51 + .../ClassDriver/AudioInput/Config/LUFAConfig.h | 93 + Demos/Device/ClassDriver/AudioInput/Descriptors.c | 312 ++ Demos/Device/ClassDriver/AudioInput/Descriptors.h | 106 + Demos/Device/ClassDriver/AudioInput/asf.xml | 52 + Demos/Device/ClassDriver/AudioInput/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/AudioInput/makefile | 43 + Demos/Device/ClassDriver/AudioOutput/AudioOutput.c | 311 ++ Demos/Device/ClassDriver/AudioOutput/AudioOutput.h | 87 + .../Device/ClassDriver/AudioOutput/AudioOutput.txt | 92 + .../ClassDriver/AudioOutput/Config/AppConfig.h | 50 + .../ClassDriver/AudioOutput/Config/LUFAConfig.h | 93 + Demos/Device/ClassDriver/AudioOutput/Descriptors.c | 312 ++ Demos/Device/ClassDriver/AudioOutput/Descriptors.h | 106 + Demos/Device/ClassDriver/AudioOutput/asf.xml | 50 + Demos/Device/ClassDriver/AudioOutput/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/AudioOutput/makefile | 43 + .../ClassDriver/DualMIDI/Config/LUFAConfig.h | 126 + Demos/Device/ClassDriver/DualMIDI/Descriptors.c | 366 ++ Demos/Device/ClassDriver/DualMIDI/Descriptors.h | 124 + Demos/Device/ClassDriver/DualMIDI/DualMIDI.c | 211 + Demos/Device/ClassDriver/DualMIDI/DualMIDI.h | 78 + Demos/Device/ClassDriver/DualMIDI/DualMIDI.txt | 78 + Demos/Device/ClassDriver/DualMIDI/asf.xml | 62 + Demos/Device/ClassDriver/DualMIDI/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/DualMIDI/makefile | 43 + .../DualVirtualSerial/Config/LUFAConfig.h | 126 + .../ClassDriver/DualVirtualSerial/Descriptors.c | 360 ++ .../ClassDriver/DualVirtualSerial/Descriptors.h | 135 + .../DualVirtualSerial/DualVirtualSerial.c | 242 ++ .../DualVirtualSerial/DualVirtualSerial.h | 76 + .../DualVirtualSerial/DualVirtualSerial.txt | 89 + .../DualVirtualSerial/LUFA DualVirtualSerial.inf | 66 + Demos/Device/ClassDriver/DualVirtualSerial/asf.xml | 62 + .../Device/ClassDriver/DualVirtualSerial/doxyfile | 2395 +++++++++++ .../Device/ClassDriver/DualVirtualSerial/makefile | 43 + .../ClassDriver/GenericHID/Config/AppConfig.h | 48 + .../ClassDriver/GenericHID/Config/LUFAConfig.h | 126 + Demos/Device/ClassDriver/GenericHID/Descriptors.c | 220 ++ Demos/Device/ClassDriver/GenericHID/Descriptors.h | 95 + Demos/Device/ClassDriver/GenericHID/GenericHID.c | 202 + Demos/Device/ClassDriver/GenericHID/GenericHID.h | 87 + Demos/Device/ClassDriver/GenericHID/GenericHID.txt | 79 + .../HostTestApp/test_generic_hid_libusb.js | 143 + .../HostTestApp/test_generic_hid_libusb.py | 98 + .../HostTestApp/test_generic_hid_winusb.py | 96 + Demos/Device/ClassDriver/GenericHID/asf.xml | 63 + Demos/Device/ClassDriver/GenericHID/doxyfile | 2396 +++++++++++ Demos/Device/ClassDriver/GenericHID/makefile | 43 + .../ClassDriver/Joystick/Config/LUFAConfig.h | 126 + Demos/Device/ClassDriver/Joystick/Descriptors.c | 220 ++ Demos/Device/ClassDriver/Joystick/Descriptors.h | 93 + Demos/Device/ClassDriver/Joystick/Joystick.c | 202 + Demos/Device/ClassDriver/Joystick/Joystick.h | 100 + Demos/Device/ClassDriver/Joystick/Joystick.txt | 77 + Demos/Device/ClassDriver/Joystick/asf.xml | 62 + Demos/Device/ClassDriver/Joystick/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/Joystick/makefile | 43 + .../ClassDriver/Keyboard/Config/LUFAConfig.h | 126 + Demos/Device/ClassDriver/Keyboard/Descriptors.c | 216 + Demos/Device/ClassDriver/Keyboard/Descriptors.h | 93 + Demos/Device/ClassDriver/Keyboard/Keyboard.c | 219 ++ Demos/Device/ClassDriver/Keyboard/Keyboard.h | 89 + Demos/Device/ClassDriver/Keyboard/Keyboard.txt | 76 + Demos/Device/ClassDriver/Keyboard/asf.xml | 62 + Demos/Device/ClassDriver/Keyboard/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/Keyboard/makefile | 43 + .../ClassDriver/KeyboardMouse/Config/LUFAConfig.h | 126 + .../Device/ClassDriver/KeyboardMouse/Descriptors.c | 289 ++ .../Device/ClassDriver/KeyboardMouse/Descriptors.h | 102 + .../ClassDriver/KeyboardMouse/KeyboardMouse.c | 276 ++ .../ClassDriver/KeyboardMouse/KeyboardMouse.h | 84 + .../ClassDriver/KeyboardMouse/KeyboardMouse.txt | 81 + Demos/Device/ClassDriver/KeyboardMouse/asf.xml | 62 + Demos/Device/ClassDriver/KeyboardMouse/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/KeyboardMouse/makefile | 43 + .../KeyboardMouseMultiReport/Config/LUFAConfig.h | 126 + .../KeyboardMouseMultiReport/Descriptors.c | 279 ++ .../KeyboardMouseMultiReport/Descriptors.h | 101 + .../KeyboardMouseMultiReport.c | 237 ++ .../KeyboardMouseMultiReport.h | 84 + .../KeyboardMouseMultiReport.txt | 78 + .../ClassDriver/KeyboardMouseMultiReport/asf.xml | 61 + .../ClassDriver/KeyboardMouseMultiReport/doxyfile | 2395 +++++++++++ .../ClassDriver/KeyboardMouseMultiReport/makefile | 43 + Demos/Device/ClassDriver/MIDI/Config/LUFAConfig.h | 126 + Demos/Device/ClassDriver/MIDI/Descriptors.c | 314 ++ Demos/Device/ClassDriver/MIDI/Descriptors.h | 108 + Demos/Device/ClassDriver/MIDI/MIDI.c | 211 + Demos/Device/ClassDriver/MIDI/MIDI.h | 78 + Demos/Device/ClassDriver/MIDI/MIDI.txt | 78 + Demos/Device/ClassDriver/MIDI/asf.xml | 62 + Demos/Device/ClassDriver/MIDI/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/MIDI/makefile | 43 + .../ClassDriver/MassStorage/Config/AppConfig.h | 50 + .../ClassDriver/MassStorage/Config/LUFAConfig.h | 126 + Demos/Device/ClassDriver/MassStorage/Descriptors.c | 194 + Demos/Device/ClassDriver/MassStorage/Descriptors.h | 98 + .../ClassDriver/MassStorage/Lib/DataflashManager.c | 534 +++ .../ClassDriver/MassStorage/Lib/DataflashManager.h | 89 + Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c | 349 ++ Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h | 89 + Demos/Device/ClassDriver/MassStorage/MassStorage.c | 162 + Demos/Device/ClassDriver/MassStorage/MassStorage.h | 83 + .../Device/ClassDriver/MassStorage/MassStorage.txt | 100 + Demos/Device/ClassDriver/MassStorage/asf.xml | 67 + Demos/Device/ClassDriver/MassStorage/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/MassStorage/makefile | 43 + .../MassStorageKeyboard/Config/AppConfig.h | 50 + .../MassStorageKeyboard/Config/LUFAConfig.h | 126 + .../ClassDriver/MassStorageKeyboard/Descriptors.c | 254 ++ .../ClassDriver/MassStorageKeyboard/Descriptors.h | 111 + .../MassStorageKeyboard/Lib/DataflashManager.c | 534 +++ .../MassStorageKeyboard/Lib/DataflashManager.h | 87 + .../ClassDriver/MassStorageKeyboard/Lib/SCSI.c | 349 ++ .../ClassDriver/MassStorageKeyboard/Lib/SCSI.h | 89 + .../MassStorageKeyboard/MassStorageKeyboard.c | 270 ++ .../MassStorageKeyboard/MassStorageKeyboard.h | 100 + .../MassStorageKeyboard/MassStorageKeyboard.txt | 100 + .../Device/ClassDriver/MassStorageKeyboard/asf.xml | 70 + .../ClassDriver/MassStorageKeyboard/doxyfile | 2395 +++++++++++ .../ClassDriver/MassStorageKeyboard/makefile | 43 + Demos/Device/ClassDriver/Mouse/Config/LUFAConfig.h | 126 + Demos/Device/ClassDriver/Mouse/Descriptors.c | 221 ++ Demos/Device/ClassDriver/Mouse/Descriptors.h | 93 + Demos/Device/ClassDriver/Mouse/Mouse.c | 202 + Demos/Device/ClassDriver/Mouse/Mouse.h | 90 + Demos/Device/ClassDriver/Mouse/Mouse.txt | 76 + Demos/Device/ClassDriver/Mouse/asf.xml | 62 + Demos/Device/ClassDriver/Mouse/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/Mouse/makefile | 43 + .../ClassDriver/RNDISEthernet/Config/AppConfig.h | 60 + .../ClassDriver/RNDISEthernet/Config/LUFAConfig.h | 126 + .../Device/ClassDriver/RNDISEthernet/Descriptors.c | 244 ++ .../Device/ClassDriver/RNDISEthernet/Descriptors.h | 112 + .../ClassDriver/RNDISEthernet/LUFA RNDIS.inf | 59 + Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.c | 87 + Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.h | 76 + Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.c | 129 + Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.h | 131 + .../ClassDriver/RNDISEthernet/Lib/Ethernet.c | 132 + .../ClassDriver/RNDISEthernet/Lib/Ethernet.h | 101 + .../RNDISEthernet/Lib/EthernetProtocols.h | 92 + Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.c | 83 + Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.h | 83 + Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.c | 116 + Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.h | 93 + .../RNDISEthernet/Lib/ProtocolDecoders.c | 277 ++ .../RNDISEthernet/Lib/ProtocolDecoders.h | 60 + Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c | 632 +++ Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h | 260 ++ Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.c | 84 + Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h | 70 + .../ClassDriver/RNDISEthernet/Lib/Webserver.c | 203 + .../ClassDriver/RNDISEthernet/Lib/Webserver.h | 57 + .../ClassDriver/RNDISEthernet/RNDISEthernet.c | 179 + .../ClassDriver/RNDISEthernet/RNDISEthernet.h | 84 + .../ClassDriver/RNDISEthernet/RNDISEthernet.txt | 146 + Demos/Device/ClassDriver/RNDISEthernet/asf.xml | 84 + Demos/Device/ClassDriver/RNDISEthernet/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/RNDISEthernet/makefile | 44 + .../ClassDriver/VirtualSerial/Config/LUFAConfig.h | 126 + .../Device/ClassDriver/VirtualSerial/Descriptors.c | 245 ++ .../Device/ClassDriver/VirtualSerial/Descriptors.h | 110 + .../VirtualSerial/LUFA VirtualSerial.inf | 66 + .../ClassDriver/VirtualSerial/VirtualSerial.c | 202 + .../ClassDriver/VirtualSerial/VirtualSerial.h | 77 + .../ClassDriver/VirtualSerial/VirtualSerial.txt | 76 + Demos/Device/ClassDriver/VirtualSerial/asf.xml | 62 + Demos/Device/ClassDriver/VirtualSerial/doxyfile | 2395 +++++++++++ Demos/Device/ClassDriver/VirtualSerial/makefile | 43 + .../VirtualSerialMassStorage/Config/AppConfig.h | 50 + .../VirtualSerialMassStorage/Config/LUFAConfig.h | 126 + .../VirtualSerialMassStorage/Descriptors.c | 295 ++ .../VirtualSerialMassStorage/Descriptors.h | 128 + .../LUFA VirtualSerialMassStorage.inf | 66 + .../Lib/DataflashManager.c | 534 +++ .../Lib/DataflashManager.h | 89 + .../VirtualSerialMassStorage/Lib/SCSI.c | 349 ++ .../VirtualSerialMassStorage/Lib/SCSI.h | 89 + .../VirtualSerialMassStorage.c | 257 ++ .../VirtualSerialMassStorage.h | 83 + .../VirtualSerialMassStorage.txt | 93 + .../ClassDriver/VirtualSerialMassStorage/asf.xml | 70 + .../ClassDriver/VirtualSerialMassStorage/doxyfile | 2395 +++++++++++ .../ClassDriver/VirtualSerialMassStorage/makefile | 43 + .../VirtualSerialMouse/Config/LUFAConfig.h | 126 + .../ClassDriver/VirtualSerialMouse/Descriptors.c | 323 ++ .../ClassDriver/VirtualSerialMouse/Descriptors.h | 123 + .../VirtualSerialMouse/LUFA VirtualSerialMouse.inf | 66 + .../VirtualSerialMouse/VirtualSerialMouse.c | 282 ++ .../VirtualSerialMouse/VirtualSerialMouse.h | 88 + .../VirtualSerialMouse/VirtualSerialMouse.txt | 79 + .../Device/ClassDriver/VirtualSerialMouse/asf.xml | 64 + .../Device/ClassDriver/VirtualSerialMouse/doxyfile | 2395 +++++++++++ .../Device/ClassDriver/VirtualSerialMouse/makefile | 43 + Demos/Device/ClassDriver/makefile | 46 + .../TestAndMeasurement/Config/LUFAConfig.h | 126 + .../Incomplete/TestAndMeasurement/Descriptors.c | 205 + .../Incomplete/TestAndMeasurement/Descriptors.h | 104 + .../TestAndMeasurement/TestAndMeasurement.c | 476 +++ .../TestAndMeasurement/TestAndMeasurement.h | 150 + .../Device/Incomplete/TestAndMeasurement/makefile | 43 + Demos/Device/LowLevel/AudioInput/AudioInput.c | 259 ++ Demos/Device/LowLevel/AudioInput/AudioInput.h | 82 + Demos/Device/LowLevel/AudioInput/AudioInput.txt | 87 + .../Device/LowLevel/AudioInput/Config/AppConfig.h | 51 + .../Device/LowLevel/AudioInput/Config/LUFAConfig.h | 93 + Demos/Device/LowLevel/AudioInput/Descriptors.c | 312 ++ Demos/Device/LowLevel/AudioInput/Descriptors.h | 106 + Demos/Device/LowLevel/AudioInput/asf.xml | 52 + Demos/Device/LowLevel/AudioInput/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/AudioInput/makefile | 43 + Demos/Device/LowLevel/AudioOutput/AudioOutput.c | 293 ++ Demos/Device/LowLevel/AudioOutput/AudioOutput.h | 74 + Demos/Device/LowLevel/AudioOutput/AudioOutput.txt | 92 + .../Device/LowLevel/AudioOutput/Config/AppConfig.h | 50 + .../LowLevel/AudioOutput/Config/LUFAConfig.h | 93 + Demos/Device/LowLevel/AudioOutput/Descriptors.c | 312 ++ Demos/Device/LowLevel/AudioOutput/Descriptors.h | 106 + Demos/Device/LowLevel/AudioOutput/asf.xml | 51 + Demos/Device/LowLevel/AudioOutput/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/AudioOutput/makefile | 43 + Demos/Device/LowLevel/BulkVendor/BulkVendor.c | 136 + Demos/Device/LowLevel/BulkVendor/BulkVendor.h | 76 + Demos/Device/LowLevel/BulkVendor/BulkVendor.txt | 69 + .../Device/LowLevel/BulkVendor/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/BulkVendor/Descriptors.c | 194 + Demos/Device/LowLevel/BulkVendor/Descriptors.h | 96 + .../BulkVendor/HostTestApp/test_bulk_vendor.py | 67 + .../WindowsDriver/LUFA_Bulk_Vendor_Demo.inf | Bin 0 -> 8150 bytes .../BulkVendor/WindowsDriver/amd64/libusb0.dll | Bin 0 -> 76384 bytes .../BulkVendor/WindowsDriver/amd64/libusb0.sys | Bin 0 -> 52832 bytes .../BulkVendor/WindowsDriver/ia64/libusb0.dll | Bin 0 -> 157792 bytes .../BulkVendor/WindowsDriver/ia64/libusb0.sys | Bin 0 -> 110176 bytes .../BulkVendor/WindowsDriver/installer_x64.exe | Bin 0 -> 25088 bytes .../BulkVendor/WindowsDriver/installer_x86.exe | Bin 0 -> 23552 bytes .../license/libusb0/installer_license.txt | 851 ++++ .../BulkVendor/WindowsDriver/x86/libusb0.sys | Bin 0 -> 42592 bytes .../BulkVendor/WindowsDriver/x86/libusb0_x86.dll | Bin 0 -> 67680 bytes Demos/Device/LowLevel/BulkVendor/asf.xml | 61 + Demos/Device/LowLevel/BulkVendor/doxyfile | 2397 ++++++++++++ Demos/Device/LowLevel/BulkVendor/makefile | 43 + .../LowLevel/DualVirtualSerial/Config/LUFAConfig.h | 126 + .../LowLevel/DualVirtualSerial/Descriptors.c | 360 ++ .../LowLevel/DualVirtualSerial/Descriptors.h | 135 + .../LowLevel/DualVirtualSerial/DualVirtualSerial.c | 299 ++ .../LowLevel/DualVirtualSerial/DualVirtualSerial.h | 77 + .../DualVirtualSerial/DualVirtualSerial.txt | 89 + .../DualVirtualSerial/LUFA DualVirtualSerial.inf | 66 + Demos/Device/LowLevel/DualVirtualSerial/asf.xml | 62 + Demos/Device/LowLevel/DualVirtualSerial/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/DualVirtualSerial/makefile | 43 + .../Device/LowLevel/GenericHID/Config/AppConfig.h | 48 + .../Device/LowLevel/GenericHID/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/GenericHID/Descriptors.c | 238 ++ Demos/Device/LowLevel/GenericHID/Descriptors.h | 99 + Demos/Device/LowLevel/GenericHID/GenericHID.c | 253 ++ Demos/Device/LowLevel/GenericHID/GenericHID.h | 81 + Demos/Device/LowLevel/GenericHID/GenericHID.txt | 79 + .../GenericHID/HostTestApp/test_generic_hid.py | 96 + Demos/Device/LowLevel/GenericHID/asf.xml | 63 + Demos/Device/LowLevel/GenericHID/doxyfile | 2396 +++++++++++ Demos/Device/LowLevel/GenericHID/makefile | 43 + Demos/Device/LowLevel/Joystick/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/Joystick/Descriptors.c | 240 ++ Demos/Device/LowLevel/Joystick/Descriptors.h | 99 + Demos/Device/LowLevel/Joystick/Joystick.c | 217 + Demos/Device/LowLevel/Joystick/Joystick.h | 91 + Demos/Device/LowLevel/Joystick/Joystick.txt | 77 + Demos/Device/LowLevel/Joystick/asf.xml | 62 + Demos/Device/LowLevel/Joystick/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/Joystick/makefile | 43 + Demos/Device/LowLevel/Keyboard/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/Keyboard/Descriptors.c | 255 ++ Demos/Device/LowLevel/Keyboard/Descriptors.h | 98 + Demos/Device/LowLevel/Keyboard/Keyboard.c | 383 ++ Demos/Device/LowLevel/Keyboard/Keyboard.h | 85 + Demos/Device/LowLevel/Keyboard/Keyboard.txt | 76 + Demos/Device/LowLevel/Keyboard/asf.xml | 62 + Demos/Device/LowLevel/Keyboard/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/Keyboard/makefile | 43 + .../LowLevel/KeyboardMouse/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/KeyboardMouse/Descriptors.c | 346 ++ Demos/Device/LowLevel/KeyboardMouse/Descriptors.h | 107 + .../Device/LowLevel/KeyboardMouse/KeyboardMouse.c | 321 ++ .../Device/LowLevel/KeyboardMouse/KeyboardMouse.h | 77 + .../LowLevel/KeyboardMouse/KeyboardMouse.txt | 81 + Demos/Device/LowLevel/KeyboardMouse/asf.xml | 62 + Demos/Device/LowLevel/KeyboardMouse/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/KeyboardMouse/makefile | 43 + Demos/Device/LowLevel/MIDI/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/MIDI/Descriptors.c | 314 ++ Demos/Device/LowLevel/MIDI/Descriptors.h | 108 + Demos/Device/LowLevel/MIDI/MIDI.c | 224 ++ Demos/Device/LowLevel/MIDI/MIDI.h | 76 + Demos/Device/LowLevel/MIDI/MIDI.txt | 78 + Demos/Device/LowLevel/MIDI/asf.xml | 62 + Demos/Device/LowLevel/MIDI/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/MIDI/makefile | 43 + .../Device/LowLevel/MassStorage/Config/AppConfig.h | 50 + .../LowLevel/MassStorage/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/MassStorage/Descriptors.c | 194 + Demos/Device/LowLevel/MassStorage/Descriptors.h | 98 + .../LowLevel/MassStorage/Lib/DataflashManager.c | 530 +++ .../LowLevel/MassStorage/Lib/DataflashManager.h | 86 + Demos/Device/LowLevel/MassStorage/Lib/SCSI.c | 344 ++ Demos/Device/LowLevel/MassStorage/Lib/SCSI.h | 150 + Demos/Device/LowLevel/MassStorage/MassStorage.c | 332 ++ Demos/Device/LowLevel/MassStorage/MassStorage.h | 92 + Demos/Device/LowLevel/MassStorage/MassStorage.txt | 100 + Demos/Device/LowLevel/MassStorage/asf.xml | 67 + Demos/Device/LowLevel/MassStorage/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/MassStorage/makefile | 43 + Demos/Device/LowLevel/Mouse/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/Mouse/Descriptors.c | 240 ++ Demos/Device/LowLevel/Mouse/Descriptors.h | 93 + Demos/Device/LowLevel/Mouse/Mouse.c | 311 ++ Demos/Device/LowLevel/Mouse/Mouse.h | 81 + Demos/Device/LowLevel/Mouse/Mouse.txt | 76 + Demos/Device/LowLevel/Mouse/asf.xml | 62 + Demos/Device/LowLevel/Mouse/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/Mouse/makefile | 43 + .../LowLevel/RNDISEthernet/Config/AppConfig.h | 60 + .../LowLevel/RNDISEthernet/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/RNDISEthernet/Descriptors.c | 244 ++ Demos/Device/LowLevel/RNDISEthernet/Descriptors.h | 112 + Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf | 59 + Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c | 87 + Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h | 78 + Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.c | 129 + Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h | 131 + Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c | 136 + Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.h | 111 + .../LowLevel/RNDISEthernet/Lib/EthernetProtocols.h | 88 + Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.c | 81 + Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.h | 82 + Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c | 113 + Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h | 92 + .../LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c | 276 ++ .../LowLevel/RNDISEthernet/Lib/ProtocolDecoders.h | 60 + Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c | 394 ++ Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h | 67 + Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c | 631 +++ Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h | 260 ++ Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c | 84 + Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h | 73 + .../Device/LowLevel/RNDISEthernet/Lib/Webserver.c | 203 + .../Device/LowLevel/RNDISEthernet/Lib/Webserver.h | 57 + .../Device/LowLevel/RNDISEthernet/RNDISEthernet.c | 294 ++ .../Device/LowLevel/RNDISEthernet/RNDISEthernet.h | 87 + .../LowLevel/RNDISEthernet/RNDISEthernet.txt | 146 + Demos/Device/LowLevel/RNDISEthernet/asf.xml | 86 + Demos/Device/LowLevel/RNDISEthernet/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/RNDISEthernet/makefile | 44 + .../LowLevel/VirtualSerial/Config/LUFAConfig.h | 126 + Demos/Device/LowLevel/VirtualSerial/Descriptors.c | 245 ++ Demos/Device/LowLevel/VirtualSerial/Descriptors.h | 110 + .../LowLevel/VirtualSerial/LUFA VirtualSerial.inf | 66 + .../Device/LowLevel/VirtualSerial/VirtualSerial.c | 243 ++ .../Device/LowLevel/VirtualSerial/VirtualSerial.h | 76 + .../LowLevel/VirtualSerial/VirtualSerial.txt | 76 + Demos/Device/LowLevel/VirtualSerial/asf.xml | 63 + Demos/Device/LowLevel/VirtualSerial/doxyfile | 2395 +++++++++++ Demos/Device/LowLevel/VirtualSerial/makefile | 43 + Demos/Device/LowLevel/makefile | 46 + Demos/Device/makefile | 21 + .../MouseHostDevice/Config/LUFAConfig.h | 93 + .../ClassDriver/MouseHostDevice/Descriptors.c | 221 ++ .../ClassDriver/MouseHostDevice/Descriptors.h | 93 + .../ClassDriver/MouseHostDevice/DeviceFunctions.c | 155 + .../ClassDriver/MouseHostDevice/DeviceFunctions.h | 64 + .../ClassDriver/MouseHostDevice/HostFunctions.c | 184 + .../ClassDriver/MouseHostDevice/HostFunctions.h | 56 + .../ClassDriver/MouseHostDevice/MouseHostDevice.c | 99 + .../ClassDriver/MouseHostDevice/MouseHostDevice.h | 78 + .../MouseHostDevice/MouseHostDevice.txt | 80 + Demos/DualRole/ClassDriver/MouseHostDevice/asf.xml | 56 + .../DualRole/ClassDriver/MouseHostDevice/doxyfile | 2395 +++++++++++ .../DualRole/ClassDriver/MouseHostDevice/makefile | 43 + Demos/DualRole/ClassDriver/makefile | 46 + Demos/DualRole/makefile | 20 + .../AndroidAccessoryHost/AndroidAccessoryHost.c | 239 ++ .../AndroidAccessoryHost/AndroidAccessoryHost.h | 79 + .../AndroidAccessoryHost/AndroidAccessoryHost.txt | 62 + .../AndroidHostApp/AndroidHostApp.zip | Bin 0 -> 552813 bytes .../AndroidAccessoryHost/Config/LUFAConfig.h | 93 + .../Host/ClassDriver/AndroidAccessoryHost/asf.xml | 49 + .../Host/ClassDriver/AndroidAccessoryHost/doxyfile | 2395 +++++++++++ .../Host/ClassDriver/AndroidAccessoryHost/makefile | 43 + .../ClassDriver/AudioInputHost/AudioInputHost.c | 239 ++ .../ClassDriver/AudioInputHost/AudioInputHost.h | 77 + .../ClassDriver/AudioInputHost/AudioInputHost.txt | 66 + .../ClassDriver/AudioInputHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/AudioInputHost/asf.xml | 48 + Demos/Host/ClassDriver/AudioInputHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/AudioInputHost/makefile | 43 + .../ClassDriver/AudioOutputHost/AudioOutputHost.c | 243 ++ .../ClassDriver/AudioOutputHost/AudioOutputHost.h | 87 + .../AudioOutputHost/AudioOutputHost.txt | 83 + .../ClassDriver/AudioOutputHost/Config/AppConfig.h | 51 + .../AudioOutputHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/AudioOutputHost/asf.xml | 52 + Demos/Host/ClassDriver/AudioOutputHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/AudioOutputHost/makefile | 43 + .../JoystickHostWithParser/Config/LUFAConfig.h | 93 + .../JoystickHostWithParser.c | 286 ++ .../JoystickHostWithParser.h | 95 + .../JoystickHostWithParser.txt | 71 + .../ClassDriver/JoystickHostWithParser/asf.xml | 48 + .../ClassDriver/JoystickHostWithParser/doxyfile | 2395 +++++++++++ .../ClassDriver/JoystickHostWithParser/makefile | 43 + .../ClassDriver/KeyboardHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.c | 244 ++ Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.h | 78 + .../Host/ClassDriver/KeyboardHost/KeyboardHost.txt | 71 + Demos/Host/ClassDriver/KeyboardHost/asf.xml | 48 + Demos/Host/ClassDriver/KeyboardHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/KeyboardHost/makefile | 43 + .../KeyboardHostWithParser/Config/LUFAConfig.h | 93 + .../KeyboardHostWithParser.c | 287 ++ .../KeyboardHostWithParser.h | 83 + .../KeyboardHostWithParser.txt | 71 + .../ClassDriver/KeyboardHostWithParser/asf.xml | 48 + .../ClassDriver/KeyboardHostWithParser/doxyfile | 2395 +++++++++++ .../ClassDriver/KeyboardHostWithParser/makefile | 43 + .../Host/ClassDriver/MIDIHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/MIDIHost/MIDIHost.c | 272 ++ Demos/Host/ClassDriver/MIDIHost/MIDIHost.h | 81 + Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt | 60 + Demos/Host/ClassDriver/MIDIHost/asf.xml | 50 + Demos/Host/ClassDriver/MIDIHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/MIDIHost/makefile | 43 + .../MassStorageHost/Config/LUFAConfig.h | 93 + .../ClassDriver/MassStorageHost/MassStorageHost.c | 311 ++ .../ClassDriver/MassStorageHost/MassStorageHost.h | 82 + .../MassStorageHost/MassStorageHost.txt | 68 + Demos/Host/ClassDriver/MassStorageHost/asf.xml | 48 + Demos/Host/ClassDriver/MassStorageHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/MassStorageHost/makefile | 43 + .../Host/ClassDriver/MouseHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/MouseHost/MouseHost.c | 227 ++ Demos/Host/ClassDriver/MouseHost/MouseHost.h | 78 + Demos/Host/ClassDriver/MouseHost/MouseHost.txt | 74 + Demos/Host/ClassDriver/MouseHost/asf.xml | 48 + Demos/Host/ClassDriver/MouseHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/MouseHost/makefile | 43 + .../MouseHostWithParser/Config/LUFAConfig.h | 93 + .../MouseHostWithParser/MouseHostWithParser.c | 300 ++ .../MouseHostWithParser/MouseHostWithParser.h | 98 + .../MouseHostWithParser/MouseHostWithParser.txt | 71 + Demos/Host/ClassDriver/MouseHostWithParser/asf.xml | 48 + .../Host/ClassDriver/MouseHostWithParser/doxyfile | 2395 +++++++++++ .../Host/ClassDriver/MouseHostWithParser/makefile | 43 + .../ClassDriver/PrinterHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/PrinterHost/PrinterHost.c | 234 ++ Demos/Host/ClassDriver/PrinterHost/PrinterHost.h | 81 + Demos/Host/ClassDriver/PrinterHost/PrinterHost.txt | 66 + Demos/Host/ClassDriver/PrinterHost/asf.xml | 48 + Demos/Host/ClassDriver/PrinterHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/PrinterHost/makefile | 43 + .../RNDISEthernetHost/Config/LUFAConfig.h | 93 + .../RNDISEthernetHost/RNDISEthernetHost.c | 253 ++ .../RNDISEthernetHost/RNDISEthernetHost.h | 81 + .../RNDISEthernetHost/RNDISEthernetHost.txt | 63 + Demos/Host/ClassDriver/RNDISEthernetHost/asf.xml | 48 + Demos/Host/ClassDriver/RNDISEthernetHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/RNDISEthernetHost/makefile | 43 + .../ClassDriver/StillImageHost/Config/LUFAConfig.h | 93 + .../ClassDriver/StillImageHost/StillImageHost.c | 230 ++ .../ClassDriver/StillImageHost/StillImageHost.h | 78 + .../ClassDriver/StillImageHost/StillImageHost.txt | 65 + Demos/Host/ClassDriver/StillImageHost/asf.xml | 48 + Demos/Host/ClassDriver/StillImageHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/StillImageHost/makefile | 43 + .../VirtualSerialHost/Config/LUFAConfig.h | 93 + .../VirtualSerialHost/VirtualSerialHost.c | 217 + .../VirtualSerialHost/VirtualSerialHost.h | 78 + .../VirtualSerialHost/VirtualSerialHost.txt | 66 + Demos/Host/ClassDriver/VirtualSerialHost/asf.xml | 48 + Demos/Host/ClassDriver/VirtualSerialHost/doxyfile | 2395 +++++++++++ Demos/Host/ClassDriver/VirtualSerialHost/makefile | 43 + Demos/Host/ClassDriver/makefile | 46 + .../AndroidAccessoryHost/AndroidAccessoryHost.c | 263 ++ .../AndroidAccessoryHost/AndroidAccessoryHost.h | 86 + .../AndroidAccessoryHost/AndroidAccessoryHost.txt | 62 + .../AndroidAccessoryHost/Config/LUFAConfig.h | 93 + .../AndroidAccessoryHost/ConfigDescriptor.c | 164 + .../AndroidAccessoryHost/ConfigDescriptor.h | 67 + .../AndroidAccessoryHost/DeviceDescriptor.c | 67 + .../AndroidAccessoryHost/DeviceDescriptor.h | 60 + .../Lib/AndroidAccessoryCommands.c | 84 + .../Lib/AndroidAccessoryCommands.h | 52 + Demos/Host/LowLevel/AndroidAccessoryHost/asf.xml | 55 + Demos/Host/LowLevel/AndroidAccessoryHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/AndroidAccessoryHost/makefile | 43 + .../Host/LowLevel/AudioInputHost/AudioInputHost.c | 250 ++ .../Host/LowLevel/AudioInputHost/AudioInputHost.h | 79 + .../LowLevel/AudioInputHost/AudioInputHost.txt | 66 + .../LowLevel/AudioInputHost/Config/LUFAConfig.h | 93 + .../LowLevel/AudioInputHost/ConfigDescriptor.c | 220 ++ .../LowLevel/AudioInputHost/ConfigDescriptor.h | 72 + Demos/Host/LowLevel/AudioInputHost/asf.xml | 50 + Demos/Host/LowLevel/AudioInputHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/AudioInputHost/makefile | 43 + .../LowLevel/AudioOutputHost/AudioOutputHost.c | 250 ++ .../LowLevel/AudioOutputHost/AudioOutputHost.h | 88 + .../LowLevel/AudioOutputHost/AudioOutputHost.txt | 83 + .../LowLevel/AudioOutputHost/Config/AppConfig.h | 51 + .../LowLevel/AudioOutputHost/Config/LUFAConfig.h | 93 + .../LowLevel/AudioOutputHost/ConfigDescriptor.c | 220 ++ .../LowLevel/AudioOutputHost/ConfigDescriptor.h | 73 + Demos/Host/LowLevel/AudioOutputHost/asf.xml | 54 + Demos/Host/LowLevel/AudioOutputHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/AudioOutputHost/makefile | 43 + .../LowLevel/GenericHIDHost/Config/LUFAConfig.h | 93 + .../LowLevel/GenericHIDHost/ConfigDescriptor.c | 183 + .../LowLevel/GenericHIDHost/ConfigDescriptor.h | 69 + .../Host/LowLevel/GenericHIDHost/GenericHIDHost.c | 269 ++ .../Host/LowLevel/GenericHIDHost/GenericHIDHost.h | 93 + .../LowLevel/GenericHIDHost/GenericHIDHost.txt | 64 + Demos/Host/LowLevel/GenericHIDHost/asf.xml | 50 + Demos/Host/LowLevel/GenericHIDHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/GenericHIDHost/makefile | 43 + .../JoystickHostWithParser/Config/LUFAConfig.h | 93 + .../JoystickHostWithParser/ConfigDescriptor.c | 187 + .../JoystickHostWithParser/ConfigDescriptor.h | 69 + .../LowLevel/JoystickHostWithParser/HIDReport.c | 111 + .../LowLevel/JoystickHostWithParser/HIDReport.h | 79 + .../JoystickHostWithParser.c | 273 ++ .../JoystickHostWithParser.h | 83 + .../JoystickHostWithParser.txt | 71 + Demos/Host/LowLevel/JoystickHostWithParser/asf.xml | 52 + .../Host/LowLevel/JoystickHostWithParser/doxyfile | 2395 +++++++++++ .../Host/LowLevel/JoystickHostWithParser/makefile | 43 + .../Host/LowLevel/KeyboardHost/Config/LUFAConfig.h | 93 + .../Host/LowLevel/KeyboardHost/ConfigDescriptor.c | 155 + .../Host/LowLevel/KeyboardHost/ConfigDescriptor.h | 66 + Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c | 264 ++ Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h | 80 + Demos/Host/LowLevel/KeyboardHost/KeyboardHost.txt | 73 + Demos/Host/LowLevel/KeyboardHost/asf.xml | 50 + Demos/Host/LowLevel/KeyboardHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/KeyboardHost/makefile | 43 + .../KeyboardHostWithParser/Config/LUFAConfig.h | 93 + .../KeyboardHostWithParser/ConfigDescriptor.c | 189 + .../KeyboardHostWithParser/ConfigDescriptor.h | 67 + .../LowLevel/KeyboardHostWithParser/HIDReport.c | 90 + .../LowLevel/KeyboardHostWithParser/HIDReport.h | 67 + .../KeyboardHostWithParser.c | 285 ++ .../KeyboardHostWithParser.h | 78 + .../KeyboardHostWithParser.txt | 71 + Demos/Host/LowLevel/KeyboardHostWithParser/asf.xml | 52 + .../Host/LowLevel/KeyboardHostWithParser/doxyfile | 2395 +++++++++++ .../Host/LowLevel/KeyboardHostWithParser/makefile | 43 + Demos/Host/LowLevel/MIDIHost/Config/LUFAConfig.h | 93 + Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c | 173 + Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h | 69 + Demos/Host/LowLevel/MIDIHost/MIDIHost.c | 266 ++ Demos/Host/LowLevel/MIDIHost/MIDIHost.h | 82 + Demos/Host/LowLevel/MIDIHost/MIDIHost.txt | 60 + Demos/Host/LowLevel/MIDIHost/asf.xml | 52 + Demos/Host/LowLevel/MIDIHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/MIDIHost/makefile | 43 + .../LowLevel/MassStorageHost/Config/LUFAConfig.h | 93 + .../LowLevel/MassStorageHost/ConfigDescriptor.c | 173 + .../LowLevel/MassStorageHost/ConfigDescriptor.h | 78 + .../MassStorageHost/Lib/MassStoreCommands.c | 635 +++ .../MassStorageHost/Lib/MassStoreCommands.h | 86 + .../LowLevel/MassStorageHost/MassStorageHost.c | 373 ++ .../LowLevel/MassStorageHost/MassStorageHost.h | 91 + .../LowLevel/MassStorageHost/MassStorageHost.txt | 68 + Demos/Host/LowLevel/MassStorageHost/asf.xml | 53 + Demos/Host/LowLevel/MassStorageHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/MassStorageHost/makefile | 43 + Demos/Host/LowLevel/MouseHost/Config/LUFAConfig.h | 93 + Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c | 159 + Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h | 66 + Demos/Host/LowLevel/MouseHost/MouseHost.c | 250 ++ Demos/Host/LowLevel/MouseHost/MouseHost.h | 82 + Demos/Host/LowLevel/MouseHost/MouseHost.txt | 74 + Demos/Host/LowLevel/MouseHost/asf.xml | 50 + Demos/Host/LowLevel/MouseHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/MouseHost/makefile | 43 + .../MouseHostWithParser/Config/LUFAConfig.h | 93 + .../MouseHostWithParser/ConfigDescriptor.c | 187 + .../MouseHostWithParser/ConfigDescriptor.h | 67 + .../Host/LowLevel/MouseHostWithParser/HIDReport.c | 111 + .../Host/LowLevel/MouseHostWithParser/HIDReport.h | 82 + .../MouseHostWithParser/MouseHostWithParser.c | 289 ++ .../MouseHostWithParser/MouseHostWithParser.h | 83 + .../MouseHostWithParser/MouseHostWithParser.txt | 71 + Demos/Host/LowLevel/MouseHostWithParser/asf.xml | 52 + Demos/Host/LowLevel/MouseHostWithParser/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/MouseHostWithParser/makefile | 43 + .../Host/LowLevel/PrinterHost/Config/LUFAConfig.h | 93 + Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.c | 177 + Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.h | 76 + .../LowLevel/PrinterHost/Lib/PrinterCommands.c | 162 + .../LowLevel/PrinterHost/Lib/PrinterCommands.h | 56 + Demos/Host/LowLevel/PrinterHost/PrinterHost.c | 226 ++ Demos/Host/LowLevel/PrinterHost/PrinterHost.h | 88 + Demos/Host/LowLevel/PrinterHost/PrinterHost.txt | 66 + Demos/Host/LowLevel/PrinterHost/asf.xml | 53 + Demos/Host/LowLevel/PrinterHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/PrinterHost/makefile | 43 + .../LowLevel/RNDISEthernetHost/Config/LUFAConfig.h | 93 + .../LowLevel/RNDISEthernetHost/ConfigDescriptor.c | 235 ++ .../LowLevel/RNDISEthernetHost/ConfigDescriptor.h | 73 + .../LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c | 311 ++ .../LowLevel/RNDISEthernetHost/Lib/RNDISCommands.h | 70 + .../LowLevel/RNDISEthernetHost/RNDISEthernetHost.c | 249 ++ .../LowLevel/RNDISEthernetHost/RNDISEthernetHost.h | 85 + .../Host/LowLevel/RNDISEthernetHost/RNDISHost.txt | 63 + Demos/Host/LowLevel/RNDISEthernetHost/asf.xml | 53 + Demos/Host/LowLevel/RNDISEthernetHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/RNDISEthernetHost/makefile | 43 + .../LowLevel/StillImageHost/Config/LUFAConfig.h | 93 + .../LowLevel/StillImageHost/ConfigDescriptor.c | 190 + .../LowLevel/StillImageHost/ConfigDescriptor.h | 72 + Demos/Host/LowLevel/StillImageHost/Lib/PIMACodes.h | 45 + .../StillImageHost/Lib/StillImageCommands.c | 268 ++ .../StillImageHost/Lib/StillImageCommands.h | 65 + .../Host/LowLevel/StillImageHost/StillImageHost.c | 365 ++ .../Host/LowLevel/StillImageHost/StillImageHost.h | 89 + .../LowLevel/StillImageHost/StillImageHost.txt | 65 + Demos/Host/LowLevel/StillImageHost/asf.xml | 54 + Demos/Host/LowLevel/StillImageHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/StillImageHost/makefile | 43 + .../LowLevel/VirtualSerialHost/Config/LUFAConfig.h | 93 + .../LowLevel/VirtualSerialHost/ConfigDescriptor.c | 234 ++ .../LowLevel/VirtualSerialHost/ConfigDescriptor.h | 73 + .../LowLevel/VirtualSerialHost/VirtualSerialHost.c | 239 ++ .../LowLevel/VirtualSerialHost/VirtualSerialHost.h | 80 + .../VirtualSerialHost/VirtualSerialHost.txt | 66 + Demos/Host/LowLevel/VirtualSerialHost/asf.xml | 50 + Demos/Host/LowLevel/VirtualSerialHost/doxyfile | 2395 +++++++++++ Demos/Host/LowLevel/VirtualSerialHost/makefile | 43 + Demos/Host/LowLevel/makefile | 46 + Demos/Host/makefile | 21 + Demos/makefile | 22 + LUFA/Build/DMBS/.gitignore | 9 + .../DMBS/HID_EEPROM_Loader/HID_EEPROM_Loader.c | 39 + LUFA/Build/DMBS/DMBS/HID_EEPROM_Loader/makefile | 35 + LUFA/Build/DMBS/DMBS/License.txt | 32 + LUFA/Build/DMBS/DMBS/ModulesOverview.md | 38 + LUFA/Build/DMBS/DMBS/WritingYourOwnModules.md | 95 + LUFA/Build/DMBS/DMBS/atprogram.md | 119 + LUFA/Build/DMBS/DMBS/atprogram.mk | 68 + LUFA/Build/DMBS/DMBS/avrdude.md | 124 + LUFA/Build/DMBS/DMBS/avrdude.mk | 52 + LUFA/Build/DMBS/DMBS/core.md | 136 + LUFA/Build/DMBS/DMBS/core.mk | 147 + LUFA/Build/DMBS/DMBS/cppcheck.md | 134 + LUFA/Build/DMBS/DMBS/cppcheck.mk | 66 + LUFA/Build/DMBS/DMBS/dfu.md | 122 + LUFA/Build/DMBS/DMBS/dfu.mk | 62 + LUFA/Build/DMBS/DMBS/doxygen.md | 118 + LUFA/Build/DMBS/DMBS/doxygen.mk | 62 + LUFA/Build/DMBS/DMBS/gcc.md | 211 + LUFA/Build/DMBS/DMBS/gcc.mk | 273 ++ LUFA/Build/DMBS/DMBS/hid.md | 129 + LUFA/Build/DMBS/DMBS/hid.mk | 57 + LUFA/Build/DMBS/Readme.md | 123 + LUFA/Build/DMBS/Template/Template.c | 12 + LUFA/Build/DMBS/Template/makefile | 32 + LUFA/Build/LUFA/lufa-gcc.mk | 43 + LUFA/Build/LUFA/lufa-sources.mk | 95 + LUFA/Build/lufa_atprogram.mk | 10 + LUFA/Build/lufa_avrdude.mk | 10 + LUFA/Build/lufa_build.mk | 12 + LUFA/Build/lufa_core.mk | 10 + LUFA/Build/lufa_cppcheck.mk | 10 + LUFA/Build/lufa_dfu.mk | 10 + LUFA/Build/lufa_doxygen.mk | 10 + LUFA/Build/lufa_hid.mk | 10 + LUFA/Build/lufa_sources.mk | 10 + LUFA/CodeTemplates/DeviceTemplate/Descriptors.c | 180 + LUFA/CodeTemplates/DeviceTemplate/Descriptors.h | 59 + .../DeviceTemplate/DeviceApplication.c | 106 + .../DeviceTemplate/DeviceApplication.h | 53 + LUFA/CodeTemplates/DeviceTemplate/asf.xml | 55 + LUFA/CodeTemplates/DriverStubs/Board.h | 82 + LUFA/CodeTemplates/DriverStubs/Buttons.h | 90 + LUFA/CodeTemplates/DriverStubs/Dataflash.h | 223 ++ LUFA/CodeTemplates/DriverStubs/Joystick.h | 102 + LUFA/CodeTemplates/DriverStubs/LEDs.h | 130 + LUFA/CodeTemplates/HostTemplate/HostApplication.c | 133 + LUFA/CodeTemplates/HostTemplate/HostApplication.h | 56 + LUFA/CodeTemplates/HostTemplate/asf.xml | 41 + LUFA/CodeTemplates/LUFAConfig.h | 167 + LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf | 64 + LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf | 59 + LUFA/CodeTemplates/makefile_template | 43 + LUFA/Common/ArchitectureSpecific.h | 185 + LUFA/Common/Architectures.h | 84 + LUFA/Common/Attributes.h | 150 + LUFA/Common/BoardTypes.h | 263 ++ LUFA/Common/Common.h | 393 ++ LUFA/Common/CompilerSpecific.h | 97 + LUFA/Common/Endianness.h | 493 +++ LUFA/DoxygenPages/BuildSystem.txt | 281 ++ LUFA/DoxygenPages/BuildingLinkableLibraries.txt | 23 + LUFA/DoxygenPages/ChangeLog.txt | 1653 ++++++++ LUFA/DoxygenPages/CompileTimeTokens.txt | 223 ++ LUFA/DoxygenPages/CompilingApps.txt | 46 + LUFA/DoxygenPages/ConfiguringApps.txt | 157 + LUFA/DoxygenPages/DevelopingWithLUFA.txt | 23 + LUFA/DoxygenPages/DeviceSupport.txt | 424 ++ LUFA/DoxygenPages/DirectorySummaries.txt | 80 + LUFA/DoxygenPages/Donating.txt | 25 + LUFA/DoxygenPages/FutureChanges.txt | 47 + LUFA/DoxygenPages/GettingStarted.txt | 37 + LUFA/DoxygenPages/Groups.txt | 38 + LUFA/DoxygenPages/Images/Author.jpg | Bin 0 -> 28410 bytes LUFA/DoxygenPages/Images/LUFA.png | Bin 0 -> 10296 bytes LUFA/DoxygenPages/Images/LUFA_thumb.png | Bin 0 -> 3729 bytes LUFA/DoxygenPages/KnownIssues.txt | 234 ++ LUFA/DoxygenPages/LUFAPoweredProjects.txt | 226 ++ LUFA/DoxygenPages/LibraryResources.txt | 33 + LUFA/DoxygenPages/LicenseInfo.txt | 43 + LUFA/DoxygenPages/MainPage.txt | 52 + LUFA/DoxygenPages/MigrationInformation.txt | 717 ++++ LUFA/DoxygenPages/OSDrivers.txt | 111 + LUFA/DoxygenPages/ProgrammingApps.txt | 27 + LUFA/DoxygenPages/SoftwareBootloaderJump.txt | 71 + LUFA/DoxygenPages/Style/Footer.htm | 35 + LUFA/DoxygenPages/Style/Style.css | 93 + LUFA/DoxygenPages/VIDAndPIDValues.txt | 199 + LUFA/DoxygenPages/WritingBoardDrivers.txt | 47 + LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h | 78 + LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h | 82 + LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h | 139 + LUFA/Drivers/Board/AVR8/BENITO/Board.h | 82 + LUFA/Drivers/Board/AVR8/BENITO/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/BENITO/LEDs.h | 139 + LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h | 78 + LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h | 161 + LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h | 78 + LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h | 139 + LUFA/Drivers/Board/AVR8/BUI/Board.h | 78 + LUFA/Drivers/Board/AVR8/BUI/LEDs.h | 143 + LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h | 86 + LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h | 105 + LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h | 123 + LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h | 149 + LUFA/Drivers/Board/AVR8/CULV3/Board.h | 82 + LUFA/Drivers/Board/AVR8/CULV3/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/CULV3/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/DUCE/Board.h | 78 + LUFA/Drivers/Board/AVR8/DUCE/LEDs.h | 147 + LUFA/Drivers/Board/AVR8/EVK527/Board.h | 90 + LUFA/Drivers/Board/AVR8/EVK527/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h | 222 ++ LUFA/Drivers/Board/AVR8/EVK527/Joystick.h | 130 + LUFA/Drivers/Board/AVR8/EVK527/LEDs.h | 143 + LUFA/Drivers/Board/AVR8/JMDBU2/Board.h | 82 + LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/LEONARDO/Board.h | 78 + LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h | 169 + LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h | 78 + LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h | 139 + LUFA/Drivers/Board/AVR8/MICRO/Board.h | 78 + LUFA/Drivers/Board/AVR8/MICRO/LEDs.h | 169 + LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h | 149 + LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h | 205 + LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h | 174 + LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h | 82 + LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/MINIMUS/Board.h | 82 + LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h | 139 + LUFA/Drivers/Board/AVR8/MULTIO/Board.h | 78 + LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h | 161 + LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h | 82 + LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h | 82 + LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h | 179 + LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h | 82 + LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h | 143 + LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h | 82 + LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h | 169 + LUFA/Drivers/Board/AVR8/POLOLUMICRO/Board.h | 79 + LUFA/Drivers/Board/AVR8/POLOLUMICRO/LEDs.h | 154 + LUFA/Drivers/Board/AVR8/QMK/Board.h | 65 + LUFA/Drivers/Board/AVR8/QMK/LEDs.h | 194 + LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h | 78 + LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h | 175 + LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h | 78 + LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h | 82 + LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h | 138 + LUFA/Drivers/Board/AVR8/STK525/Board.h | 90 + LUFA/Drivers/Board/AVR8/STK525/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/STK525/Dataflash.h | 222 ++ LUFA/Drivers/Board/AVR8/STK525/Joystick.h | 130 + LUFA/Drivers/Board/AVR8/STK525/LEDs.h | 147 + LUFA/Drivers/Board/AVR8/STK526/Board.h | 90 + LUFA/Drivers/Board/AVR8/STK526/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/STK526/Dataflash.h | 222 ++ LUFA/Drivers/Board/AVR8/STK526/Joystick.h | 123 + LUFA/Drivers/Board/AVR8/STK526/LEDs.h | 147 + LUFA/Drivers/Board/AVR8/TEENSY/Board.h | 85 + LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h | 176 + LUFA/Drivers/Board/AVR8/TUL/Board.h | 82 + LUFA/Drivers/Board/AVR8/TUL/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/TUL/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/U2S/Board.h | 82 + LUFA/Drivers/Board/AVR8/U2S/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/U2S/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/UDIP/Board.h | 82 + LUFA/Drivers/Board/AVR8/UDIP/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/UDIP/LEDs.h | 163 + LUFA/Drivers/Board/AVR8/UNO/Board.h | 84 + LUFA/Drivers/Board/AVR8/UNO/LEDs.h | 145 + LUFA/Drivers/Board/AVR8/USB2AX/Board.h | 105 + LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h | 120 + LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h | 218 ++ LUFA/Drivers/Board/AVR8/USBFOO/Board.h | 82 + LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/USBKEY/Board.h | 90 + LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h | 237 ++ LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h | 130 + LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h | 147 + LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h | 82 + LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h | 103 + LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h | 143 + LUFA/Drivers/Board/AVR8/XPLAIN/Board.h | 89 + LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h | 245 ++ LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h | 142 + LUFA/Drivers/Board/AVR8/XPLAINED_MINI/Board.h | 78 + LUFA/Drivers/Board/AVR8/XPLAINED_MINI/LEDs.h | 135 + LUFA/Drivers/Board/AVR8/YUN/Board.h | 78 + LUFA/Drivers/Board/AVR8/YUN/LEDs.h | 169 + LUFA/Drivers/Board/Board.h | 173 + LUFA/Drivers/Board/Buttons.h | 189 + LUFA/Drivers/Board/Dataflash.h | 264 ++ LUFA/Drivers/Board/Joystick.h | 152 + LUFA/Drivers/Board/LEDs.h | 304 ++ LUFA/Drivers/Board/Temperature.c | 66 + LUFA/Drivers/Board/Temperature.h | 147 + LUFA/Drivers/Board/UC3/EVK1100/Board.h | 86 + LUFA/Drivers/Board/UC3/EVK1100/Buttons.h | 117 + LUFA/Drivers/Board/UC3/EVK1100/Joystick.h | 122 + LUFA/Drivers/Board/UC3/EVK1100/LEDs.h | 173 + LUFA/Drivers/Board/UC3/EVK1101/Board.h | 86 + LUFA/Drivers/Board/UC3/EVK1101/Buttons.h | 113 + LUFA/Drivers/Board/UC3/EVK1101/Joystick.h | 131 + LUFA/Drivers/Board/UC3/EVK1101/LEDs.h | 156 + LUFA/Drivers/Board/UC3/EVK1104/Board.h | 82 + LUFA/Drivers/Board/UC3/EVK1104/Buttons.h | 109 + LUFA/Drivers/Board/UC3/EVK1104/LEDs.h | 174 + LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h | 82 + LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h | 109 + LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h | 182 + LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h | 86 + LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h | 119 + LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h | 228 ++ LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h | 181 + LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h | 86 + LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h | 119 + LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h | 229 ++ LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h | 183 + LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h | 83 + LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Buttons.h | 109 + LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h | 181 + LUFA/Drivers/Misc/AT45DB321C.h | 100 + LUFA/Drivers/Misc/AT45DB642D.h | 116 + LUFA/Drivers/Misc/RingBuffer.h | 308 ++ LUFA/Drivers/Misc/TerminalCodes.h | 231 ++ LUFA/Drivers/Peripheral/ADC.h | 75 + LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h | 446 +++ LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h | 258 ++ LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h | 208 + LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c | 121 + LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h | 271 ++ LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c | 209 + LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h | 305 ++ LUFA/Drivers/Peripheral/SPI.h | 76 + LUFA/Drivers/Peripheral/Serial.h | 76 + LUFA/Drivers/Peripheral/SerialSPI.h | 76 + LUFA/Drivers/Peripheral/TWI.h | 76 + LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h | 251 ++ LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h | 212 + LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c | 126 + LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h | 289 ++ LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c | 185 + LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h | 302 ++ LUFA/Drivers/USB/Class/AndroidAccessoryClass.h | 77 + LUFA/Drivers/USB/Class/AudioClass.h | 81 + LUFA/Drivers/USB/Class/CDCClass.h | 81 + .../USB/Class/Common/AndroidAccessoryClassCommon.h | 129 + LUFA/Drivers/USB/Class/Common/AudioClassCommon.h | 780 ++++ LUFA/Drivers/USB/Class/Common/CDCClassCommon.h | 391 ++ LUFA/Drivers/USB/Class/Common/HIDClassCommon.h | 681 ++++ LUFA/Drivers/USB/Class/Common/HIDParser.c | 389 ++ LUFA/Drivers/USB/Class/Common/HIDParser.h | 364 ++ LUFA/Drivers/USB/Class/Common/HIDReportData.h | 126 + LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h | 363 ++ .../USB/Class/Common/MassStorageClassCommon.h | 368 ++ LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h | 119 + LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h | 411 ++ .../USB/Class/Common/StillImageClassCommon.h | 161 + LUFA/Drivers/USB/Class/Device/AudioClassDevice.c | 197 + LUFA/Drivers/USB/Class/Device/AudioClassDevice.h | 396 ++ LUFA/Drivers/USB/Class/Device/CDCClassDevice.c | 362 ++ LUFA/Drivers/USB/Class/Device/CDCClassDevice.h | 386 ++ LUFA/Drivers/USB/Class/Device/HIDClassDevice.c | 211 + LUFA/Drivers/USB/Class/Device/HIDClassDevice.h | 210 + LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c | 131 + LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h | 175 + .../USB/Class/Device/MassStorageClassDevice.c | 215 + .../USB/Class/Device/MassStorageClassDevice.h | 161 + LUFA/Drivers/USB/Class/Device/PrinterClassDevice.c | 314 ++ LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h | 293 ++ LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c | 508 +++ LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h | 207 + LUFA/Drivers/USB/Class/HIDClass.h | 82 + .../USB/Class/Host/AndroidAccessoryClassHost.c | 422 ++ .../USB/Class/Host/AndroidAccessoryClassHost.h | 314 ++ LUFA/Drivers/USB/Class/Host/AudioClassHost.c | 223 ++ LUFA/Drivers/USB/Class/Host/AudioClassHost.h | 411 ++ LUFA/Drivers/USB/Class/Host/CDCClassHost.c | 512 +++ LUFA/Drivers/USB/Class/Host/CDCClassHost.h | 385 ++ LUFA/Drivers/USB/Class/Host/HIDClassHost.c | 399 ++ LUFA/Drivers/USB/Class/Host/HIDClassHost.h | 313 ++ LUFA/Drivers/USB/Class/Host/MIDIClassHost.c | 231 ++ LUFA/Drivers/USB/Class/Host/MIDIClassHost.h | 190 + LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c | 579 +++ LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h | 335 ++ LUFA/Drivers/USB/Class/Host/PrinterClassHost.c | 400 ++ LUFA/Drivers/USB/Class/Host/PrinterClassHost.h | 285 ++ LUFA/Drivers/USB/Class/Host/RNDISClassHost.c | 476 +++ LUFA/Drivers/USB/Class/Host/RNDISClassHost.h | 270 ++ LUFA/Drivers/USB/Class/Host/StillImageClassHost.c | 436 +++ LUFA/Drivers/USB/Class/Host/StillImageClassHost.h | 317 ++ LUFA/Drivers/USB/Class/MIDIClass.h | 84 + LUFA/Drivers/USB/Class/MassSt