From 60b30c036397cb5627fa374bb930794b225daa29 Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Fri, 7 Jul 2017 11:55:23 -0400 Subject: [PATCH] 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 +++ .../HID/HostLoaderApp/hid_bootloader_cli.c | 1013 ++++ .../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 + .../MassStorage/BootloaderMassStorage.c | 263 ++ .../MassStorage/BootloaderMassStorage.h | 99 + .../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 + .../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 + .../ClassDriver/AudioInput/AudioInput.c | 274 ++ .../ClassDriver/AudioInput/AudioInput.h | 94 + .../ClassDriver/AudioInput/AudioInput.txt | 92 + .../ClassDriver/AudioInput/Config/AppConfig.h | 51 + .../AudioInput/Config/LUFAConfig.h | 93 + .../ClassDriver/AudioInput/Descriptors.c | 312 ++ .../ClassDriver/AudioInput/Descriptors.h | 106 + Demos/Device/ClassDriver/AudioInput/asf.xml | 52 + Demos/Device/ClassDriver/AudioInput/doxyfile | 2395 ++++++++++ Demos/Device/ClassDriver/AudioInput/makefile | 43 + .../ClassDriver/AudioOutput/AudioOutput.c | 311 ++ .../ClassDriver/AudioOutput/AudioOutput.h | 87 + .../ClassDriver/AudioOutput/AudioOutput.txt | 92 + .../AudioOutput/Config/AppConfig.h | 50 + .../AudioOutput/Config/LUFAConfig.h | 93 + .../ClassDriver/AudioOutput/Descriptors.c | 312 ++ .../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 + .../Device/ClassDriver/DualMIDI/Descriptors.c | 366 ++ .../Device/ClassDriver/DualMIDI/Descriptors.h | 124 + Demos/Device/ClassDriver/DualMIDI/DualMIDI.c | 211 + Demos/Device/ClassDriver/DualMIDI/DualMIDI.h | 78 + .../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 + .../DualVirtualSerial/Descriptors.c | 360 ++ .../DualVirtualSerial/Descriptors.h | 135 + .../DualVirtualSerial/DualVirtualSerial.c | 242 + .../DualVirtualSerial/DualVirtualSerial.h | 76 + .../DualVirtualSerial/DualVirtualSerial.txt | 89 + .../LUFA DualVirtualSerial.inf | 66 + .../ClassDriver/DualVirtualSerial/asf.xml | 62 + .../ClassDriver/DualVirtualSerial/doxyfile | 2395 ++++++++++ .../ClassDriver/DualVirtualSerial/makefile | 43 + .../ClassDriver/GenericHID/Config/AppConfig.h | 48 + .../GenericHID/Config/LUFAConfig.h | 126 + .../ClassDriver/GenericHID/Descriptors.c | 220 + .../ClassDriver/GenericHID/Descriptors.h | 95 + .../ClassDriver/GenericHID/GenericHID.c | 202 + .../ClassDriver/GenericHID/GenericHID.h | 87 + .../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 + .../Device/ClassDriver/Joystick/Descriptors.c | 220 + .../Device/ClassDriver/Joystick/Descriptors.h | 93 + Demos/Device/ClassDriver/Joystick/Joystick.c | 202 + Demos/Device/ClassDriver/Joystick/Joystick.h | 100 + .../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 + .../Device/ClassDriver/Keyboard/Descriptors.c | 216 + .../Device/ClassDriver/Keyboard/Descriptors.h | 93 + Demos/Device/ClassDriver/Keyboard/Keyboard.c | 219 + Demos/Device/ClassDriver/Keyboard/Keyboard.h | 89 + .../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 + .../KeyboardMouse/Config/LUFAConfig.h | 126 + .../ClassDriver/KeyboardMouse/Descriptors.c | 289 ++ .../ClassDriver/KeyboardMouse/Descriptors.h | 102 + .../ClassDriver/KeyboardMouse/KeyboardMouse.c | 276 ++ .../ClassDriver/KeyboardMouse/KeyboardMouse.h | 84 + .../KeyboardMouse/KeyboardMouse.txt | 81 + .../Device/ClassDriver/KeyboardMouse/asf.xml | 62 + .../Device/ClassDriver/KeyboardMouse/doxyfile | 2395 ++++++++++ .../Device/ClassDriver/KeyboardMouse/makefile | 43 + .../Config/LUFAConfig.h | 126 + .../KeyboardMouseMultiReport/Descriptors.c | 279 ++ .../KeyboardMouseMultiReport/Descriptors.h | 101 + .../KeyboardMouseMultiReport.c | 237 + .../KeyboardMouseMultiReport.h | 84 + .../KeyboardMouseMultiReport.txt | 78 + .../KeyboardMouseMultiReport/asf.xml | 61 + .../KeyboardMouseMultiReport/doxyfile | 2395 ++++++++++ .../KeyboardMouseMultiReport/makefile | 43 + .../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 + .../MassStorage/Config/AppConfig.h | 50 + .../MassStorage/Config/LUFAConfig.h | 126 + .../ClassDriver/MassStorage/Descriptors.c | 194 + .../ClassDriver/MassStorage/Descriptors.h | 98 + .../MassStorage/Lib/DataflashManager.c | 534 +++ .../MassStorage/Lib/DataflashManager.h | 89 + .../Device/ClassDriver/MassStorage/Lib/SCSI.c | 349 ++ .../Device/ClassDriver/MassStorage/Lib/SCSI.h | 89 + .../ClassDriver/MassStorage/MassStorage.c | 162 + .../ClassDriver/MassStorage/MassStorage.h | 83 + .../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 + .../MassStorageKeyboard/Descriptors.c | 254 + .../MassStorageKeyboard/Descriptors.h | 111 + .../Lib/DataflashManager.c | 534 +++ .../Lib/DataflashManager.h | 87 + .../MassStorageKeyboard/Lib/SCSI.c | 349 ++ .../MassStorageKeyboard/Lib/SCSI.h | 89 + .../MassStorageKeyboard/MassStorageKeyboard.c | 270 ++ .../MassStorageKeyboard/MassStorageKeyboard.h | 100 + .../MassStorageKeyboard.txt | 100 + .../ClassDriver/MassStorageKeyboard/asf.xml | 70 + .../ClassDriver/MassStorageKeyboard/doxyfile | 2395 ++++++++++ .../ClassDriver/MassStorageKeyboard/makefile | 43 + .../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 + .../RNDISEthernet/Config/AppConfig.h | 60 + .../RNDISEthernet/Config/LUFAConfig.h | 126 + .../ClassDriver/RNDISEthernet/Descriptors.c | 244 + .../ClassDriver/RNDISEthernet/Descriptors.h | 112 + .../ClassDriver/RNDISEthernet/LUFA RNDIS.inf | 59 + .../ClassDriver/RNDISEthernet/Lib/ARP.c | 87 + .../ClassDriver/RNDISEthernet/Lib/ARP.h | 76 + .../ClassDriver/RNDISEthernet/Lib/DHCP.c | 129 + .../ClassDriver/RNDISEthernet/Lib/DHCP.h | 131 + .../ClassDriver/RNDISEthernet/Lib/Ethernet.c | 132 + .../ClassDriver/RNDISEthernet/Lib/Ethernet.h | 101 + .../RNDISEthernet/Lib/EthernetProtocols.h | 92 + .../ClassDriver/RNDISEthernet/Lib/ICMP.c | 83 + .../ClassDriver/RNDISEthernet/Lib/ICMP.h | 83 + .../Device/ClassDriver/RNDISEthernet/Lib/IP.c | 116 + .../Device/ClassDriver/RNDISEthernet/Lib/IP.h | 93 + .../RNDISEthernet/Lib/ProtocolDecoders.c | 277 ++ .../RNDISEthernet/Lib/ProtocolDecoders.h | 60 + .../ClassDriver/RNDISEthernet/Lib/TCP.c | 632 +++ .../ClassDriver/RNDISEthernet/Lib/TCP.h | 260 ++ .../ClassDriver/RNDISEthernet/Lib/UDP.c | 84 + .../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 + .../RNDISEthernet/RNDISEthernet.txt | 146 + .../Device/ClassDriver/RNDISEthernet/asf.xml | 84 + .../Device/ClassDriver/RNDISEthernet/doxyfile | 2395 ++++++++++ .../Device/ClassDriver/RNDISEthernet/makefile | 44 + .../VirtualSerial/Config/LUFAConfig.h | 126 + .../ClassDriver/VirtualSerial/Descriptors.c | 245 + .../ClassDriver/VirtualSerial/Descriptors.h | 110 + .../VirtualSerial/LUFA VirtualSerial.inf | 66 + .../ClassDriver/VirtualSerial/VirtualSerial.c | 202 + .../ClassDriver/VirtualSerial/VirtualSerial.h | 77 + .../VirtualSerial/VirtualSerial.txt | 76 + .../Device/ClassDriver/VirtualSerial/asf.xml | 62 + .../Device/ClassDriver/VirtualSerial/doxyfile | 2395 ++++++++++ .../Device/ClassDriver/VirtualSerial/makefile | 43 + .../Config/AppConfig.h | 50 + .../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 + .../VirtualSerialMassStorage/asf.xml | 70 + .../VirtualSerialMassStorage/doxyfile | 2395 ++++++++++ .../VirtualSerialMassStorage/makefile | 43 + .../VirtualSerialMouse/Config/LUFAConfig.h | 126 + .../VirtualSerialMouse/Descriptors.c | 323 ++ .../VirtualSerialMouse/Descriptors.h | 123 + .../LUFA VirtualSerialMouse.inf | 66 + .../VirtualSerialMouse/VirtualSerialMouse.c | 282 ++ .../VirtualSerialMouse/VirtualSerialMouse.h | 88 + .../VirtualSerialMouse/VirtualSerialMouse.txt | 79 + .../ClassDriver/VirtualSerialMouse/asf.xml | 64 + .../ClassDriver/VirtualSerialMouse/doxyfile | 2395 ++++++++++ .../ClassDriver/VirtualSerialMouse/makefile | 43 + Demos/Device/ClassDriver/makefile | 46 + .../TestAndMeasurement/Config/LUFAConfig.h | 126 + .../TestAndMeasurement/Descriptors.c | 205 + .../TestAndMeasurement/Descriptors.h | 104 + .../TestAndMeasurement/TestAndMeasurement.c | 476 ++ .../TestAndMeasurement/TestAndMeasurement.h | 150 + .../Incomplete/TestAndMeasurement/makefile | 43 + Demos/Device/LowLevel/AudioInput/AudioInput.c | 259 ++ Demos/Device/LowLevel/AudioInput/AudioInput.h | 82 + .../Device/LowLevel/AudioInput/AudioInput.txt | 87 + .../LowLevel/AudioInput/Config/AppConfig.h | 51 + .../LowLevel/AudioInput/Config/LUFAConfig.h | 93 + .../Device/LowLevel/AudioInput/Descriptors.c | 312 ++ .../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 + .../Device/LowLevel/AudioOutput/AudioOutput.c | 293 ++ .../Device/LowLevel/AudioOutput/AudioOutput.h | 74 + .../LowLevel/AudioOutput/AudioOutput.txt | 92 + .../LowLevel/AudioOutput/Config/AppConfig.h | 50 + .../LowLevel/AudioOutput/Config/LUFAConfig.h | 93 + .../Device/LowLevel/AudioOutput/Descriptors.c | 312 ++ .../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 + .../Device/LowLevel/BulkVendor/BulkVendor.txt | 69 + .../LowLevel/BulkVendor/Config/LUFAConfig.h | 126 + .../Device/LowLevel/BulkVendor/Descriptors.c | 194 + .../Device/LowLevel/BulkVendor/Descriptors.h | 96 + .../HostTestApp/test_bulk_vendor.py | 67 + .../WindowsDriver/LUFA_Bulk_Vendor_Demo.inf | Bin 0 -> 8150 bytes .../WindowsDriver/amd64/libusb0.dll | Bin 0 -> 76384 bytes .../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 .../WindowsDriver/installer_x64.exe | Bin 0 -> 25088 bytes .../WindowsDriver/installer_x86.exe | Bin 0 -> 23552 bytes .../license/libusb0/installer_license.txt | 851 ++++ .../BulkVendor/WindowsDriver/x86/libusb0.sys | Bin 0 -> 42592 bytes .../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 + .../DualVirtualSerial/Config/LUFAConfig.h | 126 + .../LowLevel/DualVirtualSerial/Descriptors.c | 360 ++ .../LowLevel/DualVirtualSerial/Descriptors.h | 135 + .../DualVirtualSerial/DualVirtualSerial.c | 299 ++ .../DualVirtualSerial/DualVirtualSerial.h | 77 + .../DualVirtualSerial/DualVirtualSerial.txt | 89 + .../LUFA DualVirtualSerial.inf | 66 + .../Device/LowLevel/DualVirtualSerial/asf.xml | 62 + .../LowLevel/DualVirtualSerial/doxyfile | 2395 ++++++++++ .../LowLevel/DualVirtualSerial/makefile | 43 + .../LowLevel/GenericHID/Config/AppConfig.h | 48 + .../LowLevel/GenericHID/Config/LUFAConfig.h | 126 + .../Device/LowLevel/GenericHID/Descriptors.c | 238 + .../Device/LowLevel/GenericHID/Descriptors.h | 99 + Demos/Device/LowLevel/GenericHID/GenericHID.c | 253 + Demos/Device/LowLevel/GenericHID/GenericHID.h | 81 + .../Device/LowLevel/GenericHID/GenericHID.txt | 79 + .../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 + .../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 + .../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 + .../KeyboardMouse/Config/LUFAConfig.h | 126 + .../LowLevel/KeyboardMouse/Descriptors.c | 346 ++ .../LowLevel/KeyboardMouse/Descriptors.h | 107 + .../LowLevel/KeyboardMouse/KeyboardMouse.c | 321 ++ .../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 + .../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 + .../LowLevel/MassStorage/Config/AppConfig.h | 50 + .../LowLevel/MassStorage/Config/LUFAConfig.h | 126 + .../Device/LowLevel/MassStorage/Descriptors.c | 194 + .../Device/LowLevel/MassStorage/Descriptors.h | 98 + .../MassStorage/Lib/DataflashManager.c | 530 +++ .../MassStorage/Lib/DataflashManager.h | 86 + Demos/Device/LowLevel/MassStorage/Lib/SCSI.c | 344 ++ Demos/Device/LowLevel/MassStorage/Lib/SCSI.h | 150 + .../Device/LowLevel/MassStorage/MassStorage.c | 332 ++ .../Device/LowLevel/MassStorage/MassStorage.h | 92 + .../LowLevel/MassStorage/MassStorage.txt | 100 + Demos/Device/LowLevel/MassStorage/asf.xml | 67 + Demos/Device/LowLevel/MassStorage/doxyfile | 2395 ++++++++++ Demos/Device/LowLevel/MassStorage/makefile | 43 + .../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 + .../RNDISEthernet/Config/LUFAConfig.h | 126 + .../LowLevel/RNDISEthernet/Descriptors.c | 244 + .../LowLevel/RNDISEthernet/Descriptors.h | 112 + .../LowLevel/RNDISEthernet/LUFA RNDIS.inf | 59 + Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c | 87 + Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h | 78 + .../Device/LowLevel/RNDISEthernet/Lib/DHCP.c | 129 + .../Device/LowLevel/RNDISEthernet/Lib/DHCP.h | 131 + .../LowLevel/RNDISEthernet/Lib/Ethernet.c | 136 + .../LowLevel/RNDISEthernet/Lib/Ethernet.h | 111 + .../RNDISEthernet/Lib/EthernetProtocols.h | 88 + .../Device/LowLevel/RNDISEthernet/Lib/ICMP.c | 81 + .../Device/LowLevel/RNDISEthernet/Lib/ICMP.h | 82 + Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c | 113 + Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h | 92 + .../RNDISEthernet/Lib/ProtocolDecoders.c | 276 ++ .../RNDISEthernet/Lib/ProtocolDecoders.h | 60 + .../Device/LowLevel/RNDISEthernet/Lib/RNDIS.c | 394 ++ .../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 + .../LowLevel/RNDISEthernet/Lib/Webserver.c | 203 + .../LowLevel/RNDISEthernet/Lib/Webserver.h | 57 + .../LowLevel/RNDISEthernet/RNDISEthernet.c | 294 ++ .../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 + .../VirtualSerial/Config/LUFAConfig.h | 126 + .../LowLevel/VirtualSerial/Descriptors.c | 245 + .../LowLevel/VirtualSerial/Descriptors.h | 110 + .../VirtualSerial/LUFA VirtualSerial.inf | 66 + .../LowLevel/VirtualSerial/VirtualSerial.c | 243 + .../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 + .../MouseHostDevice/DeviceFunctions.c | 155 + .../MouseHostDevice/DeviceFunctions.h | 64 + .../MouseHostDevice/HostFunctions.c | 184 + .../MouseHostDevice/HostFunctions.h | 56 + .../MouseHostDevice/MouseHostDevice.c | 99 + .../MouseHostDevice/MouseHostDevice.h | 78 + .../MouseHostDevice/MouseHostDevice.txt | 80 + .../ClassDriver/MouseHostDevice/asf.xml | 56 + .../ClassDriver/MouseHostDevice/doxyfile | 2395 ++++++++++ .../ClassDriver/MouseHostDevice/makefile | 43 + Demos/DualRole/ClassDriver/makefile | 46 + Demos/DualRole/makefile | 20 + .../AndroidAccessoryHost.c | 239 + .../AndroidAccessoryHost.h | 79 + .../AndroidAccessoryHost.txt | 62 + .../AndroidHostApp/AndroidHostApp.zip | Bin 0 -> 552813 bytes .../AndroidAccessoryHost/Config/LUFAConfig.h | 93 + .../ClassDriver/AndroidAccessoryHost/asf.xml | 49 + .../ClassDriver/AndroidAccessoryHost/doxyfile | 2395 ++++++++++ .../ClassDriver/AndroidAccessoryHost/makefile | 43 + .../AudioInputHost/AudioInputHost.c | 239 + .../AudioInputHost/AudioInputHost.h | 77 + .../AudioInputHost/AudioInputHost.txt | 66 + .../AudioInputHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/AudioInputHost/asf.xml | 48 + .../Host/ClassDriver/AudioInputHost/doxyfile | 2395 ++++++++++ .../Host/ClassDriver/AudioInputHost/makefile | 43 + .../AudioOutputHost/AudioOutputHost.c | 243 + .../AudioOutputHost/AudioOutputHost.h | 87 + .../AudioOutputHost/AudioOutputHost.txt | 83 + .../AudioOutputHost/Config/AppConfig.h | 51 + .../AudioOutputHost/Config/LUFAConfig.h | 93 + .../Host/ClassDriver/AudioOutputHost/asf.xml | 52 + .../Host/ClassDriver/AudioOutputHost/doxyfile | 2395 ++++++++++ .../Host/ClassDriver/AudioOutputHost/makefile | 43 + .../Config/LUFAConfig.h | 93 + .../JoystickHostWithParser.c | 286 ++ .../JoystickHostWithParser.h | 95 + .../JoystickHostWithParser.txt | 71 + .../JoystickHostWithParser/asf.xml | 48 + .../JoystickHostWithParser/doxyfile | 2395 ++++++++++ .../JoystickHostWithParser/makefile | 43 + .../KeyboardHost/Config/LUFAConfig.h | 93 + .../ClassDriver/KeyboardHost/KeyboardHost.c | 244 + .../ClassDriver/KeyboardHost/KeyboardHost.h | 78 + .../ClassDriver/KeyboardHost/KeyboardHost.txt | 71 + Demos/Host/ClassDriver/KeyboardHost/asf.xml | 48 + Demos/Host/ClassDriver/KeyboardHost/doxyfile | 2395 ++++++++++ Demos/Host/ClassDriver/KeyboardHost/makefile | 43 + .../Config/LUFAConfig.h | 93 + .../KeyboardHostWithParser.c | 287 ++ .../KeyboardHostWithParser.h | 83 + .../KeyboardHostWithParser.txt | 71 + .../KeyboardHostWithParser/asf.xml | 48 + .../KeyboardHostWithParser/doxyfile | 2395 ++++++++++ .../KeyboardHostWithParser/makefile | 43 + .../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 + .../MassStorageHost/MassStorageHost.c | 311 ++ .../MassStorageHost/MassStorageHost.h | 82 + .../MassStorageHost/MassStorageHost.txt | 68 + .../Host/ClassDriver/MassStorageHost/asf.xml | 48 + .../Host/ClassDriver/MassStorageHost/doxyfile | 2395 ++++++++++ .../Host/ClassDriver/MassStorageHost/makefile | 43 + .../ClassDriver/MouseHost/Config/LUFAConfig.h | 93 + Demos/Host/ClassDriver/MouseHost/MouseHost.c | 227 + Demos/Host/ClassDriver/MouseHost/MouseHost.h | 78 + .../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.txt | 71 + .../ClassDriver/MouseHostWithParser/asf.xml | 48 + .../ClassDriver/MouseHostWithParser/doxyfile | 2395 ++++++++++ .../ClassDriver/MouseHostWithParser/makefile | 43 + .../PrinterHost/Config/LUFAConfig.h | 93 + .../ClassDriver/PrinterHost/PrinterHost.c | 234 + .../ClassDriver/PrinterHost/PrinterHost.h | 81 + .../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 + .../ClassDriver/RNDISEthernetHost/asf.xml | 48 + .../ClassDriver/RNDISEthernetHost/doxyfile | 2395 ++++++++++ .../ClassDriver/RNDISEthernetHost/makefile | 43 + .../StillImageHost/Config/LUFAConfig.h | 93 + .../StillImageHost/StillImageHost.c | 230 + .../StillImageHost/StillImageHost.h | 78 + .../StillImageHost/StillImageHost.txt | 65 + Demos/Host/ClassDriver/StillImageHost/asf.xml | 48 + .../Host/ClassDriver/StillImageHost/doxyfile | 2395 ++++++++++ .../Host/ClassDriver/StillImageHost/makefile | 43 + .../VirtualSerialHost/Config/LUFAConfig.h | 93 + .../VirtualSerialHost/VirtualSerialHost.c | 217 + .../VirtualSerialHost/VirtualSerialHost.h | 78 + .../VirtualSerialHost/VirtualSerialHost.txt | 66 + .../ClassDriver/VirtualSerialHost/asf.xml | 48 + .../ClassDriver/VirtualSerialHost/doxyfile | 2395 ++++++++++ .../ClassDriver/VirtualSerialHost/makefile | 43 + Demos/Host/ClassDriver/makefile | 46 + .../AndroidAccessoryHost.c | 263 ++ .../AndroidAccessoryHost.h | 86 + .../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 + .../LowLevel/AndroidAccessoryHost/asf.xml | 55 + .../LowLevel/AndroidAccessoryHost/doxyfile | 2395 ++++++++++ .../LowLevel/AndroidAccessoryHost/makefile | 43 + .../LowLevel/AudioInputHost/AudioInputHost.c | 250 + .../LowLevel/AudioInputHost/AudioInputHost.h | 79 + .../AudioInputHost/AudioInputHost.txt | 66 + .../AudioInputHost/Config/LUFAConfig.h | 93 + .../AudioInputHost/ConfigDescriptor.c | 220 + .../AudioInputHost/ConfigDescriptor.h | 72 + Demos/Host/LowLevel/AudioInputHost/asf.xml | 50 + Demos/Host/LowLevel/AudioInputHost/doxyfile | 2395 ++++++++++ Demos/Host/LowLevel/AudioInputHost/makefile | 43 + .../AudioOutputHost/AudioOutputHost.c | 250 + .../AudioOutputHost/AudioOutputHost.h | 88 + .../AudioOutputHost/AudioOutputHost.txt | 83 + .../AudioOutputHost/Config/AppConfig.h | 51 + .../AudioOutputHost/Config/LUFAConfig.h | 93 + .../AudioOutputHost/ConfigDescriptor.c | 220 + .../AudioOutputHost/ConfigDescriptor.h | 73 + Demos/Host/LowLevel/AudioOutputHost/asf.xml | 54 + Demos/Host/LowLevel/AudioOutputHost/doxyfile | 2395 ++++++++++ Demos/Host/LowLevel/AudioOutputHost/makefile | 43 + .../GenericHIDHost/Config/LUFAConfig.h | 93 + .../GenericHIDHost/ConfigDescriptor.c | 183 + .../GenericHIDHost/ConfigDescriptor.h | 69 + .../LowLevel/GenericHIDHost/GenericHIDHost.c | 269 ++ .../LowLevel/GenericHIDHost/GenericHIDHost.h | 93 + .../GenericHIDHost/GenericHIDHost.txt | 64 + Demos/Host/LowLevel/GenericHIDHost/asf.xml | 50 + Demos/Host/LowLevel/GenericHIDHost/doxyfile | 2395 ++++++++++ Demos/Host/LowLevel/GenericHIDHost/makefile | 43 + .../Config/LUFAConfig.h | 93 + .../JoystickHostWithParser/ConfigDescriptor.c | 187 + .../JoystickHostWithParser/ConfigDescriptor.h | 69 + .../JoystickHostWithParser/HIDReport.c | 111 + .../JoystickHostWithParser/HIDReport.h | 79 + .../JoystickHostWithParser.c | 273 ++ .../JoystickHostWithParser.h | 83 + .../JoystickHostWithParser.txt | 71 + .../LowLevel/JoystickHostWithParser/asf.xml | 52 + .../LowLevel/JoystickHostWithParser/doxyfile | 2395 ++++++++++ .../LowLevel/JoystickHostWithParser/makefile | 43 + .../LowLevel/KeyboardHost/Config/LUFAConfig.h | 93 + .../LowLevel/KeyboardHost/ConfigDescriptor.c | 155 + .../LowLevel/KeyboardHost/ConfigDescriptor.h | 66 + .../Host/LowLevel/KeyboardHost/KeyboardHost.c | 264 ++ .../Host/LowLevel/KeyboardHost/KeyboardHost.h | 80 + .../LowLevel/KeyboardHost/KeyboardHost.txt | 73 + Demos/Host/LowLevel/KeyboardHost/asf.xml | 50 + Demos/Host/LowLevel/KeyboardHost/doxyfile | 2395 ++++++++++ Demos/Host/LowLevel/KeyboardHost/makefile | 43 + .../Config/LUFAConfig.h | 93 + .../KeyboardHostWithParser/ConfigDescriptor.c | 189 + .../KeyboardHostWithParser/ConfigDescriptor.h | 67 + .../KeyboardHostWithParser/HIDReport.c | 90 + .../KeyboardHostWithParser/HIDReport.h | 67 + .../KeyboardHostWithParser.c | 285 ++ .../KeyboardHostWithParser.h | 78 + .../KeyboardHostWithParser.txt | 71 + .../LowLevel/KeyboardHostWithParser/asf.xml | 52 + .../LowLevel/KeyboardHostWithParser/doxyfile | 2395 ++++++++++ .../LowLevel/KeyboardHostWithParser/makefile | 43 + .../LowLevel/MIDIHost/Config/LUFAConfig.h | 93 + .../Host/LowLevel/MIDIHost/ConfigDescriptor.c | 173 + .../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 + .../MassStorageHost/Config/LUFAConfig.h | 93 + .../MassStorageHost/ConfigDescriptor.c | 173 + .../MassStorageHost/ConfigDescriptor.h | 78 + .../MassStorageHost/Lib/MassStoreCommands.c | 635 +++ .../MassStorageHost/Lib/MassStoreCommands.h | 86 + .../MassStorageHost/MassStorageHost.c | 373 ++ .../MassStorageHost/MassStorageHost.h | 91 + .../MassStorageHost/MassStorageHost.txt | 68 + Demos/Host/LowLevel/MassStorageHost/asf.xml | 53 + Demos/Host/LowLevel/MassStorageHost/doxyfile | 2395 ++++++++++ Demos/Host/LowLevel/MassStorageHost/makefile | 43 + .../LowLevel/MouseHost/Config/LUFAConfig.h | 93 + .../LowLevel/MouseHost/ConfigDescriptor.c | 159 + .../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 + .../LowLevel/MouseHostWithParser/HIDReport.c | 111 + .../LowLevel/MouseHostWithParser/HIDReport.h | 82 + .../MouseHostWithParser/MouseHostWithParser.c | 289 ++ .../MouseHostWithParser/MouseHostWithParser.h | 83 + .../MouseHostWithParser.txt | 71 + .../Host/LowLevel/MouseHostWithParser/asf.xml | 52 + .../LowLevel/MouseHostWithParser/doxyfile | 2395 ++++++++++ .../LowLevel/MouseHostWithParser/makefile | 43 + .../LowLevel/PrinterHost/Config/LUFAConfig.h | 93 + .../LowLevel/PrinterHost/ConfigDescriptor.c | 177 + .../LowLevel/PrinterHost/ConfigDescriptor.h | 76 + .../PrinterHost/Lib/PrinterCommands.c | 162 + .../PrinterHost/Lib/PrinterCommands.h | 56 + Demos/Host/LowLevel/PrinterHost/PrinterHost.c | 226 + Demos/Host/LowLevel/PrinterHost/PrinterHost.h | 88 + .../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 + .../RNDISEthernetHost/Config/LUFAConfig.h | 93 + .../RNDISEthernetHost/ConfigDescriptor.c | 235 + .../RNDISEthernetHost/ConfigDescriptor.h | 73 + .../RNDISEthernetHost/Lib/RNDISCommands.c | 311 ++ .../RNDISEthernetHost/Lib/RNDISCommands.h | 70 + .../RNDISEthernetHost/RNDISEthernetHost.c | 249 + .../RNDISEthernetHost/RNDISEthernetHost.h | 85 + .../LowLevel/RNDISEthernetHost/RNDISHost.txt | 63 + Demos/Host/LowLevel/RNDISEthernetHost/asf.xml | 53 + .../Host/LowLevel/RNDISEthernetHost/doxyfile | 2395 ++++++++++ .../Host/LowLevel/RNDISEthernetHost/makefile | 43 + .../StillImageHost/Config/LUFAConfig.h | 93 + .../StillImageHost/ConfigDescriptor.c | 190 + .../StillImageHost/ConfigDescriptor.h | 72 + .../LowLevel/StillImageHost/Lib/PIMACodes.h | 45 + .../StillImageHost/Lib/StillImageCommands.c | 268 ++ .../StillImageHost/Lib/StillImageCommands.h | 65 + .../LowLevel/StillImageHost/StillImageHost.c | 365 ++ .../LowLevel/StillImageHost/StillImageHost.h | 89 + .../StillImageHost/StillImageHost.txt | 65 + Demos/Host/LowLevel/StillImageHost/asf.xml | 54 + Demos/Host/LowLevel/StillImageHost/doxyfile | 2395 ++++++++++ Demos/Host/LowLevel/StillImageHost/makefile | 43 + .../VirtualSerialHost/Config/LUFAConfig.h | 93 + .../VirtualSerialHost/ConfigDescriptor.c | 234 + .../VirtualSerialHost/ConfigDescriptor.h | 73 + .../VirtualSerialHost/VirtualSerialHost.c | 239 + .../VirtualSerialHost/VirtualSerialHost.h | 80 + .../VirtualSerialHost/VirtualSerialHost.txt | 66 + Demos/Host/LowLevel/VirtualSerialHost/asf.xml | 50 + .../Host/LowLevel/VirtualSerialHost/doxyfile | 2395 ++++++++++ .../Host/LowLevel/VirtualSerialHost/makefile | 43 + Demos/Host/LowLevel/makefile | 46 + Demos/Host/makefile | 21 + Demos/makefile | 22 + LUFA/Build/DMBS/.gitignore | 9 + .../HID_EEPROM_Loader/HID_EEPROM_Loader.c | 39 + .../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 + .../DeviceTemplate/Descriptors.c | 180 + .../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 + .../HostTemplate/HostApplication.c | 133 + .../HostTemplate/HostApplication.h | 56 + LUFA/CodeTemplates/HostTemplate/asf.xml | 41 + LUFA/CodeTemplates/LUFAConfig.h | 167 + .../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 ++ .../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 + .../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 + .../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 + .../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 + .../Board/UC3/UC3A3_XPLAINED/Buttons.h | 109 + LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h | 182 + .../Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h | 86 + .../Board/XMEGA/A3BU_XPLAINED/Buttons.h | 119 + .../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 + .../Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h | 119 + .../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 + .../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 + .../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 ++ .../Drivers/USB/Class/AndroidAccessoryClass.h | 77 + LUFA/Drivers/USB/Class/AudioClass.h | 81 + LUFA/Drivers/USB/Class/CDCClass.h | 81 + .../Common/AndroidAccessoryClassCommon.h | 129 + .../USB/Class/Common/AudioClassCommon.h | 780 ++++ .../Drivers/USB/Class/Common/CDCClassCommon.h | 391 ++ .../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 + .../USB/Class/Common/MIDIClassCommon.h | 363 ++ .../USB/Class/Common/MassStorageClassCommon.h | 368 ++ .../USB/Class/Common/PrinterClassCommon.h | 119 + .../USB/Class/Common/RNDISClassCommon.h | 411 ++ .../USB/Class/Common/StillImageClassCommon.h | 161 + .../USB/Class/Device/AudioClassDevice.c | 197 + .../USB/Class/Device/AudioClassDevice.h | 396 ++ .../Drivers/USB/Class/Device/CDCClassDevice.c | 362 ++ .../Drivers/USB/Class/Device/CDCClassDevice.h | 386 ++ .../Drivers/USB/Class/Device/HIDClassDevice.c | 211 + .../Drivers/USB/Class/Device/HIDClassDevice.h | 210 + .../USB/Class/Device/MIDIClassDevice.c | 131 + .../USB/Class/Device/MIDIClassDevice.h | 175 + .../USB/Class/Device/MassStorageClassDevice.c | 215 + .../USB/Class/Device/MassStorageClassDevice.h | 161 + .../USB/Class/Device/PrinterClassDevice.c | 314 ++ .../USB/Class/Device/PrinterClassDevice.h | 293 ++ .../USB/Class/Device/RNDISClassDevice.c | 508 ++ .../USB/Class/Device/RNDISClassDevice.h | 207 + LUFA/Drivers/USB/Class/HIDClass.h | 82 + .../Class/Host/AndroidAccessoryClassHost.c | 422 ++ .../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 + .../USB/Class/Host/MassStorageClassHost.c | 579 +++ .../USB/Class/Host/MassStorageClassHost.h | 335 ++ .../Drivers/USB/Class/Host/PrinterClassHost.c | 400 ++ .../Drivers/USB/Class/Host/PrinterClassHost.h | 285 ++ LUFA/Drivers/USB/Class/Host/RNDISClassHost.c | 476 ++ LUFA/Drivers/USB/Class/Host/RNDISClassHost.h | 270 ++ .../USB/Class/Host/StillImageClassHost.c | 436 ++ .../USB/Class/Host/StillImageClassHost.h | 317 ++ LUFA/Drivers/USB/Class/MIDIClass.h | 84 + LUFA/Drivers/USB/Class/MassStorageClass.h | 81 + LUFA/Drivers/USB/Class/PrinterClass.h | 83 + LUFA/Drivers/USB/Class/RNDISClass.h | 81 + LUFA/Drivers/USB/Class/StillImageClass.h | 76 + LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c | 57 + LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h | 269 ++ .../USB/Core/AVR8/EndpointStream_AVR8.c | 275 ++ .../USB/Core/AVR8/EndpointStream_AVR8.h | 658 +++ LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c | 201 + LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h | 819 ++++ LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c | 297 ++ LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h | 372 ++ LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h | 159 + LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c | 221 + LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h | 442 ++ LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c | 210 + LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h | 922 ++++ .../Template/Template_Endpoint_Control_R.c | 84 + .../Template/Template_Endpoint_Control_W.c | 95 + .../Core/AVR8/Template/Template_Endpoint_RW.c | 89 + .../USB/Core/AVR8/Template/Template_Pipe_RW.c | 88 + .../USB/Core/AVR8/USBController_AVR8.c | 273 ++ .../USB/Core/AVR8/USBController_AVR8.h | 432 ++ .../Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c | 279 ++ .../Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h | 375 ++ LUFA/Drivers/USB/Core/ConfigDescriptors.c | 146 + LUFA/Drivers/USB/Core/ConfigDescriptors.h | 287 ++ LUFA/Drivers/USB/Core/Device.h | 159 + LUFA/Drivers/USB/Core/DeviceStandardReq.c | 393 ++ LUFA/Drivers/USB/Core/DeviceStandardReq.h | 158 + LUFA/Drivers/USB/Core/Endpoint.h | 130 + LUFA/Drivers/USB/Core/EndpointStream.h | 124 + LUFA/Drivers/USB/Core/Events.c | 39 + LUFA/Drivers/USB/Core/Events.h | 372 ++ LUFA/Drivers/USB/Core/Host.h | 139 + LUFA/Drivers/USB/Core/HostStandardReq.c | 322 ++ LUFA/Drivers/USB/Core/HostStandardReq.h | 292 ++ LUFA/Drivers/USB/Core/OTG.h | 80 + LUFA/Drivers/USB/Core/Pipe.h | 144 + LUFA/Drivers/USB/Core/PipeStream.h | 100 + LUFA/Drivers/USB/Core/StdDescriptors.h | 765 +++ LUFA/Drivers/USB/Core/StdRequestType.h | 258 + LUFA/Drivers/USB/Core/UC3/Device_UC3.c | 51 + LUFA/Drivers/USB/Core/UC3/Device_UC3.h | 267 ++ .../Drivers/USB/Core/UC3/EndpointStream_UC3.c | 235 + .../Drivers/USB/Core/UC3/EndpointStream_UC3.h | 438 ++ LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c | 196 + LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h | 794 ++++ LUFA/Drivers/USB/Core/UC3/Host_UC3.c | 297 ++ LUFA/Drivers/USB/Core/UC3/Host_UC3.h | 363 ++ LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c | 166 + LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h | 352 ++ LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c | 209 + LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h | 924 ++++ .../Template/Template_Endpoint_Control_R.c | 84 + .../Template/Template_Endpoint_Control_W.c | 95 + .../Core/UC3/Template/Template_Endpoint_RW.c | 89 + .../USB/Core/UC3/Template/Template_Pipe_RW.c | 88 + LUFA/Drivers/USB/Core/UC3/USBController_UC3.c | 222 + LUFA/Drivers/USB/Core/UC3/USBController_UC3.h | 353 ++ LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c | 228 + LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h | 376 ++ LUFA/Drivers/USB/Core/USBController.h | 165 + LUFA/Drivers/USB/Core/USBInterrupt.h | 73 + LUFA/Drivers/USB/Core/USBMode.h | 283 ++ LUFA/Drivers/USB/Core/USBTask.c | 89 + LUFA/Drivers/USB/Core/USBTask.h | 200 + LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c | 49 + LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h | 266 ++ .../USB/Core/XMEGA/EndpointStream_XMEGA.c | 275 ++ .../USB/Core/XMEGA/EndpointStream_XMEGA.h | 658 +++ LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c | 268 ++ LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h | 689 +++ LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c | 41 + .../Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c | 41 + LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c | 37 + .../Template/Template_Endpoint_Control_R.c | 86 + .../Template/Template_Endpoint_Control_W.c | 97 + .../XMEGA/Template/Template_Endpoint_RW.c | 89 + .../USB/Core/XMEGA/USBController_XMEGA.c | 204 + .../USB/Core/XMEGA/USBController_XMEGA.h | 313 ++ .../USB/Core/XMEGA/USBInterrupt_XMEGA.c | 106 + .../USB/Core/XMEGA/USBInterrupt_XMEGA.h | 172 + LUFA/Drivers/USB/USB.h | 422 ++ LUFA/License.txt | 24 + LUFA/Platform/Platform.h | 80 + LUFA/Platform/UC3/ClockManagement.h | 338 ++ LUFA/Platform/UC3/Exception.S | 128 + LUFA/Platform/UC3/InterruptManagement.c | 62 + LUFA/Platform/UC3/InterruptManagement.h | 174 + LUFA/Platform/UC3/UC3ExperimentalInfo.txt | 1 + LUFA/Platform/XMEGA/ClockManagement.h | 397 ++ LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt | 1 + .../Docbook/mshelp/README.txt | 13 + .../Docbook/mshelp/docbook.xsl | 58 + .../Docbook/mshelp/hv1-common.xsl | 664 +++ .../StudioIntegration/Docbook/placeholder.txt | 1 + .../HV1/helpcontentsetup.msha | 27 + .../HV1/lufa_docbook_transform.xslt | 806 ++++ .../HV1/lufa_helpcontentsetup_transform.xslt | 47 + .../HV1/lufa_hv1_transform.xslt | 45 + .../HV1/lufa_studio_help_styling.css | 53 + LUFA/StudioIntegration/VSIX/LUFA.dll | Bin 0 -> 785920 bytes LUFA/StudioIntegration/VSIX/LUFA.pkgdef | Bin 0 -> 2242 bytes .../VSIX/[Content_Types].xml | 13 + LUFA/StudioIntegration/VSIX/asf-manifest.xml | 18 + .../VSIX/extension.vsixmanifest | 32 + .../StudioIntegration/VSIX/generate_caches.py | 38 + .../VSIX/lufa_asfmanifest_transform.xslt | 36 + .../VSIX/lufa_vsmanifest_transform.xslt | 33 + .../XDK/lufa_extension_transform.xslt | 68 + .../XDK/lufa_filelist_transform.xslt | 35 + .../XDK/lufa_indent_transform.xslt | 23 + .../XDK/lufa_module_transform.xslt | 66 + LUFA/StudioIntegration/lufa.xml | 96 + LUFA/StudioIntegration/lufa_common.xml | 34 + LUFA/StudioIntegration/lufa_drivers_board.xml | 114 + .../lufa_drivers_board_names.xml | 853 ++++ LUFA/StudioIntegration/lufa_drivers_misc.xml | 57 + .../lufa_drivers_peripheral.xml | 198 + LUFA/StudioIntegration/lufa_drivers_usb.xml | 32 + .../lufa_drivers_usb_class.xml | 32 + .../lufa_drivers_usb_class_android.xml | 54 + .../lufa_drivers_usb_class_audio.xml | 109 + .../lufa_drivers_usb_class_cdc.xml | 99 + .../lufa_drivers_usb_class_hid.xml | 99 + .../lufa_drivers_usb_class_midi.xml | 99 + .../lufa_drivers_usb_class_ms.xml | 99 + .../lufa_drivers_usb_class_printer.xml | 99 + .../lufa_drivers_usb_class_rndis.xml | 99 + .../lufa_drivers_usb_class_si.xml | 56 + .../lufa_drivers_usb_core.xml | 85 + .../lufa_drivers_usb_core_avr8.xml | 43 + .../lufa_drivers_usb_core_uc3.xml | 42 + .../lufa_drivers_usb_core_xmega.xml | 36 + LUFA/StudioIntegration/lufa_platform.xml | 60 + LUFA/StudioIntegration/lufa_platform_uc3.xml | 26 + .../StudioIntegration/lufa_platform_xmega.xml | 23 + LUFA/StudioIntegration/lufa_toolchain.xml | 45 + LUFA/StudioIntegration/makefile | 142 + LUFA/Version.h | 67 + LUFA/doxyfile | 2400 ++++++++++ LUFA/makefile | 40 + Maintenance/lufa_functionlist_transform.xslt | 19 + Maintenance/makefile | 94 + Projects/AVRISP-MKII/AVRISP-MKII.c | 164 + Projects/AVRISP-MKII/AVRISP-MKII.h | 90 + Projects/AVRISP-MKII/AVRISP-MKII.txt | 346 ++ Projects/AVRISP-MKII/AVRISPDescriptors.c | 203 + Projects/AVRISP-MKII/AVRISPDescriptors.h | 100 + Projects/AVRISP-MKII/Config/AppConfig.h | 68 + Projects/AVRISP-MKII/Config/LUFAConfig.h | 93 + Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c | 531 +++ Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h | 81 + Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c | 370 ++ Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h | 147 + Projects/AVRISP-MKII/Lib/V2Protocol.c | 267 ++ Projects/AVRISP-MKII/Lib/V2Protocol.h | 105 + .../AVRISP-MKII/Lib/V2ProtocolConstants.h | 90 + Projects/AVRISP-MKII/Lib/V2ProtocolParams.c | 207 + Projects/AVRISP-MKII/Lib/V2ProtocolParams.h | 91 + Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c | 274 ++ Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h | 86 + Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c | 468 ++ Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h | 140 + .../AVRISP-MKII/Lib/XPROG/XPROGProtocol.c | 480 ++ .../AVRISP-MKII/Lib/XPROG/XPROGProtocol.h | 136 + Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c | 209 + Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h | 136 + .../AVRISP-MKII/WindowsDriver/AVRISP_mkII.inf | Bin 0 -> 8070 bytes .../WindowsDriver/amd64/libusb0.dll | Bin 0 -> 76384 bytes .../WindowsDriver/amd64/libusb0.sys | Bin 0 -> 52832 bytes .../AVRISP-MKII/WindowsDriver/avrisp_mkii.cat | Bin 0 -> 9610 bytes .../WindowsDriver/ia64/libusb0.dll | Bin 0 -> 157792 bytes .../WindowsDriver/ia64/libusb0.sys | Bin 0 -> 110176 bytes .../WindowsDriver/installer_x64.exe | Bin 0 -> 25088 bytes .../WindowsDriver/installer_x86.exe | Bin 0 -> 23552 bytes .../license/libusb0/installer_license.txt | 851 ++++ .../AVRISP-MKII/WindowsDriver/x86/libusb0.sys | Bin 0 -> 42592 bytes .../WindowsDriver/x86/libusb0_x86.dll | Bin 0 -> 67680 bytes Projects/AVRISP-MKII/asf.xml | 91 + Projects/AVRISP-MKII/doxyfile | 2396 ++++++++++ Projects/AVRISP-MKII/makefile | 44 + Projects/Benito/Benito.c | 311 ++ Projects/Benito/Benito.h | 79 + Projects/Benito/Benito.txt | 106 + Projects/Benito/Config/AppConfig.h | 57 + Projects/Benito/Config/LUFAConfig.h | 93 + Projects/Benito/Descriptors.c | 244 + Projects/Benito/Descriptors.h | 112 + Projects/Benito/LUFA Benito Programmer.inf | 66 + Projects/Benito/asf.xml | 53 + Projects/Benito/doxyfile | 2395 ++++++++++ Projects/Benito/makefile | 43 + Projects/HIDReportViewer/Config/LUFAConfig.h | 93 + Projects/HIDReportViewer/HIDReportViewer.c | 325 ++ Projects/HIDReportViewer/HIDReportViewer.h | 87 + Projects/HIDReportViewer/HIDReportViewer.txt | 64 + Projects/HIDReportViewer/asf.xml | 48 + Projects/HIDReportViewer/doxyfile | 2395 ++++++++++ Projects/HIDReportViewer/makefile | 43 + .../CPUUsageApp/CPUMonitor.Designer.cs | 131 + .../LEDNotifier/CPUUsageApp/CPUMonitor.cs | 115 + .../LEDNotifier/CPUUsageApp/CPUMonitor.csproj | 95 + .../LEDNotifier/CPUUsageApp/CPUMonitor.resx | 132 + Projects/LEDNotifier/CPUUsageApp/Program.cs | 21 + .../CPUUsageApp/Properties/AssemblyInfo.cs | 36 + .../Properties/Resources.Designer.cs | 63 + .../CPUUsageApp/Properties/Resources.resx | 117 + .../Properties/Settings.Designer.cs | 26 + .../CPUUsageApp/Properties/Settings.settings | 7 + Projects/LEDNotifier/Config/LUFAConfig.h | 93 + Projects/LEDNotifier/Descriptors.c | 245 + Projects/LEDNotifier/Descriptors.h | 110 + .../LEDMixerApp/LEDMixer.Designer.cs | 149 + Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs | 75 + .../LEDNotifier/LEDMixerApp/LEDMixer.csproj | 95 + .../LEDNotifier/LEDMixerApp/LEDMixer.resx | 123 + Projects/LEDNotifier/LEDMixerApp/Program.cs | 21 + .../LEDMixerApp/Properties/AssemblyInfo.cs | 36 + .../Properties/Resources.Designer.cs | 63 + .../LEDMixerApp/Properties/Resources.resx | 117 + .../Properties/Settings.Designer.cs | 26 + .../LEDMixerApp/Properties/Settings.settings | 7 + Projects/LEDNotifier/LEDNotifier.c | 178 + Projects/LEDNotifier/LEDNotifier.h | 60 + Projects/LEDNotifier/LEDNotifier.txt | 63 + Projects/LEDNotifier/LUFA LED Notifier.inf | 66 + Projects/LEDNotifier/asf.xml | 51 + Projects/LEDNotifier/doxyfile | 2397 ++++++++++ Projects/LEDNotifier/makefile | 43 + Projects/MIDIToneGenerator/Config/AppConfig.h | 48 + .../MIDIToneGenerator/Config/LUFAConfig.h | 93 + Projects/MIDIToneGenerator/Descriptors.c | 314 ++ Projects/MIDIToneGenerator/Descriptors.h | 110 + .../MIDIToneGenerator/MIDIToneGenerator.c | 252 + .../MIDIToneGenerator/MIDIToneGenerator.h | 105 + .../MIDIToneGenerator/MIDIToneGenerator.txt | 73 + Projects/MIDIToneGenerator/asf.xml | 50 + Projects/MIDIToneGenerator/doxyfile | 2395 ++++++++++ Projects/MIDIToneGenerator/makefile | 43 + Projects/Magstripe/Config/AppConfig.h | 58 + Projects/Magstripe/Config/LUFAConfig.h | 93 + Projects/Magstripe/Descriptors.c | 216 + Projects/Magstripe/Descriptors.h | 96 + Projects/Magstripe/Lib/CircularBitBuffer.c | 115 + Projects/Magstripe/Lib/CircularBitBuffer.h | 97 + Projects/Magstripe/Lib/MagstripeHW.h | 102 + Projects/Magstripe/Magstripe.c | 228 + Projects/Magstripe/Magstripe.h | 90 + Projects/Magstripe/Magstripe.txt | 163 + Projects/Magstripe/asf.xml | 52 + Projects/Magstripe/doxyfile | 2395 ++++++++++ Projects/Magstripe/makefile | 43 + Projects/MediaController/Config/LUFAConfig.h | 93 + Projects/MediaController/Descriptors.c | 234 + Projects/MediaController/Descriptors.h | 93 + Projects/MediaController/MediaController.c | 184 + Projects/MediaController/MediaController.h | 110 + Projects/MediaController/MediaController.txt | 66 + Projects/MediaController/asf.xml | 50 + Projects/MediaController/doxyfile | 2395 ++++++++++ Projects/MediaController/makefile | 43 + Projects/MissileLauncher/Config/LUFAConfig.h | 93 + Projects/MissileLauncher/ConfigDescriptor.c | 185 + Projects/MissileLauncher/ConfigDescriptor.h | 72 + Projects/MissileLauncher/MissileLauncher.c | 323 ++ Projects/MissileLauncher/MissileLauncher.h | 92 + Projects/MissileLauncher/MissileLauncher.txt | 60 + Projects/MissileLauncher/asf.xml | 49 + Projects/MissileLauncher/doxyfile | 2395 ++++++++++ Projects/MissileLauncher/makefile | 43 + Projects/RelayBoard/Config/LUFAConfig.h | 93 + Projects/RelayBoard/Descriptors.c | 188 + Projects/RelayBoard/Descriptors.h | 84 + Projects/RelayBoard/RelayBoard.c | 145 + Projects/RelayBoard/RelayBoard.h | 65 + Projects/RelayBoard/RelayBoard.txt | 106 + Projects/RelayBoard/asf.xml | 47 + Projects/RelayBoard/doxyfile | 2395 ++++++++++ Projects/RelayBoard/makefile | 43 + Projects/SerialToLCD/Config/LUFAConfig.h | 93 + Projects/SerialToLCD/Descriptors.c | 257 + Projects/SerialToLCD/Descriptors.h | 111 + Projects/SerialToLCD/LUFA SerialToLCD.inf | 66 + Projects/SerialToLCD/Lib/HD44780.c | 127 + Projects/SerialToLCD/Lib/HD44780.h | 64 + Projects/SerialToLCD/SerialToLCD.c | 170 + Projects/SerialToLCD/SerialToLCD.h | 64 + Projects/SerialToLCD/SerialToLCD.txt | 109 + Projects/SerialToLCD/asf.xml | 51 + Projects/SerialToLCD/doxyfile | 2395 ++++++++++ Projects/SerialToLCD/makefile | 43 + Projects/TempDataLogger/Config/AppConfig.h | 48 + Projects/TempDataLogger/Config/LUFAConfig.h | 93 + Projects/TempDataLogger/Descriptors.c | 257 + Projects/TempDataLogger/Descriptors.h | 87 + .../TempDataLogger/Lib/DataflashManager.c | 534 +++ .../TempDataLogger/Lib/DataflashManager.h | 86 + .../TempDataLogger/Lib/FATFs/00readme.txt | 135 + Projects/TempDataLogger/Lib/FATFs/diskio.c | 98 + Projects/TempDataLogger/Lib/FATFs/diskio.h | 55 + Projects/TempDataLogger/Lib/FATFs/ff.c | 4139 +++++++++++++++++ Projects/TempDataLogger/Lib/FATFs/ff.h | 337 ++ Projects/TempDataLogger/Lib/FATFs/ffconf.h | 191 + Projects/TempDataLogger/Lib/FATFs/integer.h | 38 + Projects/TempDataLogger/Lib/RTC.c | 159 + Projects/TempDataLogger/Lib/RTC.h | 126 + Projects/TempDataLogger/Lib/SCSI.c | 344 ++ Projects/TempDataLogger/Lib/SCSI.h | 89 + Projects/TempDataLogger/TempDataLogger.c | 331 ++ Projects/TempDataLogger/TempDataLogger.h | 112 + .../TempLogHostApp/COPYING.LESSER.txt | 166 + .../TempDataLogger/TempLogHostApp/COPYING.txt | 675 +++ .../DataLoggerSettings.Designer.cs | 181 + .../TempLogHostApp/DataLoggerSettings.cs | 179 + .../TempLogHostApp/DataLoggerSettings.resx | 120 + .../TempLogHostApp/Hid.Linux.dll | Bin 0 -> 9216 bytes .../TempDataLogger/TempLogHostApp/Hid.Net.dll | Bin 0 -> 24576 bytes .../TempLogHostApp/Hid.Win32.dll | Bin 0 -> 94208 bytes .../TempDataLogger/TempLogHostApp/Program.cs | 21 + .../TempLogHostApp/Properties/AssemblyInfo.cs | 36 + .../Properties/Resources.Designer.cs | 63 + .../TempLogHostApp/Properties/Resources.resx | 117 + .../Properties/Settings.Designer.cs | 26 + .../Properties/Settings.settings | 7 + .../TempDataLogger/TempLogHostApp/README.txt | 24 + .../TempLogHostApp/TempLoggerHostApp.csproj | 99 + .../TempLogHostApp_Python/temp_log_config.py | 99 + .../TempDataLogger/TemperatureDataLogger.txt | 86 + Projects/TempDataLogger/asf.xml | 72 + Projects/TempDataLogger/doxyfile | 2397 ++++++++++ Projects/TempDataLogger/makefile | 44 + Projects/USBtoSerial/Config/LUFAConfig.h | 93 + Projects/USBtoSerial/Descriptors.c | 245 + Projects/USBtoSerial/Descriptors.h | 110 + Projects/USBtoSerial/LUFA USBtoSerial.inf | 66 + Projects/USBtoSerial/USBtoSerial.c | 254 + Projects/USBtoSerial/USBtoSerial.h | 77 + Projects/USBtoSerial/USBtoSerial.txt | 78 + Projects/USBtoSerial/asf.xml | 51 + Projects/USBtoSerial/doxyfile | 2395 ++++++++++ Projects/USBtoSerial/makefile | 43 + Projects/Webserver/Config/AppConfig.h | 73 + Projects/Webserver/Config/LUFAConfig.h | 93 + Projects/Webserver/Descriptors.c | 295 ++ Projects/Webserver/Descriptors.h | 128 + Projects/Webserver/LUFA Webserver RNDIS.inf | 59 + Projects/Webserver/Lib/DHCPClientApp.c | 208 + Projects/Webserver/Lib/DHCPClientApp.h | 69 + Projects/Webserver/Lib/DHCPCommon.c | 103 + Projects/Webserver/Lib/DHCPCommon.h | 159 + Projects/Webserver/Lib/DHCPServerApp.c | 265 ++ Projects/Webserver/Lib/DHCPServerApp.h | 64 + Projects/Webserver/Lib/DataflashManager.c | 534 +++ Projects/Webserver/Lib/DataflashManager.h | 87 + Projects/Webserver/Lib/FATFs/00readme.txt | 135 + Projects/Webserver/Lib/FATFs/diskio.c | 65 + Projects/Webserver/Lib/FATFs/diskio.h | 52 + Projects/Webserver/Lib/FATFs/ff.c | 4139 +++++++++++++++++ Projects/Webserver/Lib/FATFs/ff.h | 337 ++ Projects/Webserver/Lib/FATFs/ffconf.h | 190 + Projects/Webserver/Lib/FATFs/integer.h | 38 + Projects/Webserver/Lib/HTTPServerApp.c | 284 ++ Projects/Webserver/Lib/HTTPServerApp.h | 84 + Projects/Webserver/Lib/SCSI.c | 344 ++ Projects/Webserver/Lib/SCSI.h | 87 + Projects/Webserver/Lib/TELNETServerApp.c | 163 + Projects/Webserver/Lib/TELNETServerApp.h | 71 + Projects/Webserver/Lib/uIPManagement.c | 298 ++ Projects/Webserver/Lib/uIPManagement.h | 69 + Projects/Webserver/Lib/uip/clock.c | 37 + Projects/Webserver/Lib/uip/clock.h | 13 + Projects/Webserver/Lib/uip/timer.c | 128 + Projects/Webserver/Lib/uip/timer.h | 87 + Projects/Webserver/Lib/uip/uip-split.c | 151 + Projects/Webserver/Lib/uip/uip-split.h | 104 + Projects/Webserver/Lib/uip/uip.c | 1941 ++++++++ Projects/Webserver/Lib/uip/uip.h | 2130 +++++++++ Projects/Webserver/Lib/uip/uip_arp.c | 432 ++ Projects/Webserver/Lib/uip/uip_arp.h | 146 + Projects/Webserver/Lib/uip/uipopt.h | 740 +++ Projects/Webserver/USBDeviceMode.c | 162 + Projects/Webserver/USBDeviceMode.h | 62 + Projects/Webserver/USBHostMode.c | 172 + Projects/Webserver/USBHostMode.h | 60 + Projects/Webserver/Webserver.c | 77 + Projects/Webserver/Webserver.h | 76 + Projects/Webserver/Webserver.txt | 126 + Projects/Webserver/asf.xml | 96 + Projects/Webserver/doxyfile | 2396 ++++++++++ Projects/Webserver/makefile | 46 + Projects/XPLAINBridge/Config/AppConfig.h | 64 + Projects/XPLAINBridge/Config/LUFAConfig.h | 93 + Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf | 66 + Projects/XPLAINBridge/Lib/SoftUART.c | 156 + Projects/XPLAINBridge/Lib/SoftUART.h | 71 + Projects/XPLAINBridge/USARTDescriptors.c | 242 + Projects/XPLAINBridge/USARTDescriptors.h | 111 + Projects/XPLAINBridge/XPLAINBridge.c | 292 ++ Projects/XPLAINBridge/XPLAINBridge.h | 103 + Projects/XPLAINBridge/XPLAINBridge.txt | 89 + Projects/XPLAINBridge/asf.xml | 57 + Projects/XPLAINBridge/doxyfile | 2395 ++++++++++ Projects/XPLAINBridge/makefile | 54 + Projects/makefile | 47 + README.txt | 56 + makefile | 26 + 1455 files changed, 394541 insertions(+) create mode 100644 .gitignore create mode 100644 Bootloaders/CDC/BootloaderAPI.c create mode 100644 Bootloaders/CDC/BootloaderAPI.h create mode 100644 Bootloaders/CDC/BootloaderAPITable.S create mode 100644 Bootloaders/CDC/BootloaderCDC.c create mode 100644 Bootloaders/CDC/BootloaderCDC.h create mode 100644 Bootloaders/CDC/BootloaderCDC.txt create mode 100644 Bootloaders/CDC/Config/AppConfig.h create mode 100644 Bootloaders/CDC/Config/LUFAConfig.h create mode 100644 Bootloaders/CDC/Descriptors.c create mode 100644 Bootloaders/CDC/Descriptors.h create mode 100644 Bootloaders/CDC/LUFA CDC Bootloader.inf create mode 100644 Bootloaders/CDC/asf.xml create mode 100644 Bootloaders/CDC/doxyfile create mode 100644 Bootloaders/CDC/makefile create mode 100644 Bootloaders/DFU/BootloaderAPI.c create mode 100644 Bootloaders/DFU/BootloaderAPI.h create mode 100644 Bootloaders/DFU/BootloaderAPITable.S create mode 100644 Bootloaders/DFU/BootloaderDFU.c create mode 100644 Bootloaders/DFU/BootloaderDFU.h create mode 100644 Bootloaders/DFU/BootloaderDFU.txt create mode 100644 Bootloaders/DFU/Config/AppConfig.h create mode 100644 Bootloaders/DFU/Config/LUFAConfig.h create mode 100644 Bootloaders/DFU/Descriptors.c create mode 100644 Bootloaders/DFU/Descriptors.h create mode 100644 Bootloaders/DFU/asf.xml create mode 100644 Bootloaders/DFU/doxyfile create mode 100644 Bootloaders/DFU/makefile create mode 100644 Bootloaders/HID/BootloaderHID.c create mode 100644 Bootloaders/HID/BootloaderHID.h create mode 100644 Bootloaders/HID/BootloaderHID.txt create mode 100644 Bootloaders/HID/Config/LUFAConfig.h create mode 100644 Bootloaders/HID/Descriptors.c create mode 100644 Bootloaders/HID/Descriptors.h create mode 100644 Bootloaders/HID/HostLoaderApp/.gitignore create mode 100644 Bootloaders/HID/HostLoaderApp/Makefile create mode 100644 Bootloaders/HID/HostLoaderApp/Makefile.bsd create mode 100644 Bootloaders/HID/HostLoaderApp/gpl3.txt create mode 100644 Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c create mode 100644 Bootloaders/HID/HostLoaderApp_Python/hid_bootloader_loader.py create mode 100644 Bootloaders/HID/asf.xml create mode 100644 Bootloaders/HID/doxyfile create mode 100644 Bootloaders/HID/makefile create mode 100644 Bootloaders/MassStorage/BootloaderAPI.c create mode 100644 Bootloaders/MassStorage/BootloaderAPI.h create mode 100644 Bootloaders/MassStorage/BootloaderAPITable.S create mode 100644 Bootloaders/MassStorage/BootloaderMassStorage.c create mode 100644 Bootloaders/MassStorage/BootloaderMassStorage.h create mode 100644 Bootloaders/MassStorage/BootloaderMassStorage.txt create mode 100644 Bootloaders/MassStorage/Config/AppConfig.h create mode 100644 Bootloaders/MassStorage/Config/LUFAConfig.h create mode 100644 Bootloaders/MassStorage/Descriptors.c create mode 100644 Bootloaders/MassStorage/Descriptors.h create mode 100644 Bootloaders/MassStorage/Lib/SCSI.c create mode 100644 Bootloaders/MassStorage/Lib/SCSI.h create mode 100644 Bootloaders/MassStorage/Lib/VirtualFAT.c create mode 100644 Bootloaders/MassStorage/Lib/VirtualFAT.h create mode 100644 Bootloaders/MassStorage/asf.xml create mode 100644 Bootloaders/MassStorage/doxyfile create mode 100644 Bootloaders/MassStorage/makefile create mode 100644 Bootloaders/Printer/BootloaderAPI.c create mode 100644 Bootloaders/Printer/BootloaderAPI.h create mode 100644 Bootloaders/Printer/BootloaderAPITable.S create mode 100644 Bootloaders/Printer/BootloaderPrinter.c create mode 100644 Bootloaders/Printer/BootloaderPrinter.h create mode 100644 Bootloaders/Printer/BootloaderPrinter.txt create mode 100644 Bootloaders/Printer/Config/LUFAConfig.h create mode 100644 Bootloaders/Printer/Descriptors.c create mode 100644 Bootloaders/Printer/Descriptors.h create mode 100644 Bootloaders/Printer/asf.xml create mode 100644 Bootloaders/Printer/doxyfile create mode 100644 Bootloaders/Printer/makefile create mode 100644 Bootloaders/makefile create mode 100644 BuildTests/BoardDriverTest/Board/Board.h create mode 100644 BuildTests/BoardDriverTest/Board/Buttons.h create mode 100644 BuildTests/BoardDriverTest/Board/Dataflash.h create mode 100644 BuildTests/BoardDriverTest/Board/Joystick.h create mode 100644 BuildTests/BoardDriverTest/Board/LEDs.h create mode 100644 BuildTests/BoardDriverTest/BoardDeviceMap.cfg create mode 100644 BuildTests/BoardDriverTest/Test.c create mode 100644 BuildTests/BoardDriverTest/makefile create mode 100644 BuildTests/BoardDriverTest/makefile.test create mode 100644 BuildTests/BootloaderTest/BootloaderDeviceMap.cfg create mode 100644 BuildTests/BootloaderTest/makefile create mode 100644 BuildTests/ModuleTest/Dummy.S create mode 100644 BuildTests/ModuleTest/Modules.h create mode 100644 BuildTests/ModuleTest/Test_C.c create mode 100644 BuildTests/ModuleTest/Test_CPP.cpp create mode 100644 BuildTests/ModuleTest/makefile create mode 100644 BuildTests/ModuleTest/makefile.test create mode 100644 BuildTests/SingleUSBModeTest/Dummy.S create mode 100644 BuildTests/SingleUSBModeTest/Test.c create mode 100644 BuildTests/SingleUSBModeTest/makefile create mode 100644 BuildTests/SingleUSBModeTest/makefile.test create mode 100644 BuildTests/StaticAnalysisTest/makefile create mode 100644 BuildTests/makefile create mode 100644 Demos/Device/ClassDriver/AudioInput/AudioInput.c create mode 100644 Demos/Device/ClassDriver/AudioInput/AudioInput.h create mode 100644 Demos/Device/ClassDriver/AudioInput/AudioInput.txt create mode 100644 Demos/Device/ClassDriver/AudioInput/Config/AppConfig.h create mode 100644 Demos/Device/ClassDriver/AudioInput/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/AudioInput/Descriptors.c create mode 100644 Demos/Device/ClassDriver/AudioInput/Descriptors.h create mode 100644 Demos/Device/ClassDriver/AudioInput/asf.xml create mode 100644 Demos/Device/ClassDriver/AudioInput/doxyfile create mode 100644 Demos/Device/ClassDriver/AudioInput/makefile create mode 100644 Demos/Device/ClassDriver/AudioOutput/AudioOutput.c create mode 100644 Demos/Device/ClassDriver/AudioOutput/AudioOutput.h create mode 100644 Demos/Device/ClassDriver/AudioOutput/AudioOutput.txt create mode 100644 Demos/Device/ClassDriver/AudioOutput/Config/AppConfig.h create mode 100644 Demos/Device/ClassDriver/AudioOutput/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/AudioOutput/Descriptors.c create mode 100644 Demos/Device/ClassDriver/AudioOutput/Descriptors.h create mode 100644 Demos/Device/ClassDriver/AudioOutput/asf.xml create mode 100644 Demos/Device/ClassDriver/AudioOutput/doxyfile create mode 100644 Demos/Device/ClassDriver/AudioOutput/makefile create mode 100644 Demos/Device/ClassDriver/DualMIDI/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/DualMIDI/Descriptors.c create mode 100644 Demos/Device/ClassDriver/DualMIDI/Descriptors.h create mode 100644 Demos/Device/ClassDriver/DualMIDI/DualMIDI.c create mode 100644 Demos/Device/ClassDriver/DualMIDI/DualMIDI.h create mode 100644 Demos/Device/ClassDriver/DualMIDI/DualMIDI.txt create mode 100644 Demos/Device/ClassDriver/DualMIDI/asf.xml create mode 100644 Demos/Device/ClassDriver/DualMIDI/doxyfile create mode 100644 Demos/Device/ClassDriver/DualMIDI/makefile create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/Descriptors.c create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/Descriptors.h create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.txt create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/LUFA DualVirtualSerial.inf create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/asf.xml create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/doxyfile create mode 100644 Demos/Device/ClassDriver/DualVirtualSerial/makefile create mode 100644 Demos/Device/ClassDriver/GenericHID/Config/AppConfig.h create mode 100644 Demos/Device/ClassDriver/GenericHID/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/GenericHID/Descriptors.c create mode 100644 Demos/Device/ClassDriver/GenericHID/Descriptors.h create mode 100644 Demos/Device/ClassDriver/GenericHID/GenericHID.c create mode 100644 Demos/Device/ClassDriver/GenericHID/GenericHID.h create mode 100644 Demos/Device/ClassDriver/GenericHID/GenericHID.txt create mode 100755 Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.js create mode 100755 Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.py create mode 100644 Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_winusb.py create mode 100644 Demos/Device/ClassDriver/GenericHID/asf.xml create mode 100644 Demos/Device/ClassDriver/GenericHID/doxyfile create mode 100644 Demos/Device/ClassDriver/GenericHID/makefile create mode 100644 Demos/Device/ClassDriver/Joystick/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/Joystick/Descriptors.c create mode 100644 Demos/Device/ClassDriver/Joystick/Descriptors.h create mode 100644 Demos/Device/ClassDriver/Joystick/Joystick.c create mode 100644 Demos/Device/ClassDriver/Joystick/Joystick.h create mode 100644 Demos/Device/ClassDriver/Joystick/Joystick.txt create mode 100644 Demos/Device/ClassDriver/Joystick/asf.xml create mode 100644 Demos/Device/ClassDriver/Joystick/doxyfile create mode 100644 Demos/Device/ClassDriver/Joystick/makefile create mode 100644 Demos/Device/ClassDriver/Keyboard/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/Keyboard/Descriptors.c create mode 100644 Demos/Device/ClassDriver/Keyboard/Descriptors.h create mode 100644 Demos/Device/ClassDriver/Keyboard/Keyboard.c create mode 100644 Demos/Device/ClassDriver/Keyboard/Keyboard.h create mode 100644 Demos/Device/ClassDriver/Keyboard/Keyboard.txt create mode 100644 Demos/Device/ClassDriver/Keyboard/asf.xml create mode 100644 Demos/Device/ClassDriver/Keyboard/doxyfile create mode 100644 Demos/Device/ClassDriver/Keyboard/makefile create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/Descriptors.c create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/Descriptors.h create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/KeyboardMouse.c create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/KeyboardMouse.h create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/KeyboardMouse.txt create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/asf.xml create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/doxyfile create mode 100644 Demos/Device/ClassDriver/KeyboardMouse/makefile create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/Descriptors.c create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/Descriptors.h create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/KeyboardMouseMultiReport.c create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/KeyboardMouseMultiReport.h create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/KeyboardMouseMultiReport.txt create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/asf.xml create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/doxyfile create mode 100644 Demos/Device/ClassDriver/KeyboardMouseMultiReport/makefile create mode 100644 Demos/Device/ClassDriver/MIDI/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/MIDI/Descriptors.c create mode 100644 Demos/Device/ClassDriver/MIDI/Descriptors.h create mode 100644 Demos/Device/ClassDriver/MIDI/MIDI.c create mode 100644 Demos/Device/ClassDriver/MIDI/MIDI.h create mode 100644 Demos/Device/ClassDriver/MIDI/MIDI.txt create mode 100644 Demos/Device/ClassDriver/MIDI/asf.xml create mode 100644 Demos/Device/ClassDriver/MIDI/doxyfile create mode 100644 Demos/Device/ClassDriver/MIDI/makefile create mode 100644 Demos/Device/ClassDriver/MassStorage/Config/AppConfig.h create mode 100644 Demos/Device/ClassDriver/MassStorage/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/MassStorage/Descriptors.c create mode 100644 Demos/Device/ClassDriver/MassStorage/Descriptors.h create mode 100644 Demos/Device/ClassDriver/MassStorage/Lib/DataflashManager.c create mode 100644 Demos/Device/ClassDriver/MassStorage/Lib/DataflashManager.h create mode 100644 Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c create mode 100644 Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h create mode 100644 Demos/Device/ClassDriver/MassStorage/MassStorage.c create mode 100644 Demos/Device/ClassDriver/MassStorage/MassStorage.h create mode 100644 Demos/Device/ClassDriver/MassStorage/MassStorage.txt create mode 100644 Demos/Device/ClassDriver/MassStorage/asf.xml create mode 100644 Demos/Device/ClassDriver/MassStorage/doxyfile create mode 100644 Demos/Device/ClassDriver/MassStorage/makefile create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Config/AppConfig.h create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Descriptors.c create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Descriptors.h create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Lib/DataflashManager.c create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Lib/DataflashManager.h create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Lib/SCSI.c create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/Lib/SCSI.h create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/MassStorageKeyboard.c create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/MassStorageKeyboard.h create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/MassStorageKeyboard.txt create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/asf.xml create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/doxyfile create mode 100644 Demos/Device/ClassDriver/MassStorageKeyboard/makefile create mode 100644 Demos/Device/ClassDriver/Mouse/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/Mouse/Descriptors.c create mode 100644 Demos/Device/ClassDriver/Mouse/Descriptors.h create mode 100644 Demos/Device/ClassDriver/Mouse/Mouse.c create mode 100644 Demos/Device/ClassDriver/Mouse/Mouse.h create mode 100644 Demos/Device/ClassDriver/Mouse/Mouse.txt create mode 100644 Demos/Device/ClassDriver/Mouse/asf.xml create mode 100644 Demos/Device/ClassDriver/Mouse/doxyfile create mode 100644 Demos/Device/ClassDriver/Mouse/makefile create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Config/AppConfig.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Descriptors.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Descriptors.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/LUFA RNDIS.inf create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/Ethernet.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/Ethernet.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/EthernetProtocols.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/RNDISEthernet.c create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/RNDISEthernet.h create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/RNDISEthernet.txt create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/asf.xml create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/doxyfile create mode 100644 Demos/Device/ClassDriver/RNDISEthernet/makefile create mode 100644 Demos/Device/ClassDriver/VirtualSerial/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/VirtualSerial/Descriptors.c create mode 100644 Demos/Device/ClassDriver/VirtualSerial/Descriptors.h create mode 100644 Demos/Device/ClassDriver/VirtualSerial/LUFA VirtualSerial.inf create mode 100644 Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c create mode 100644 Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h create mode 100644 Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.txt create mode 100644 Demos/Device/ClassDriver/VirtualSerial/asf.xml create mode 100644 Demos/Device/ClassDriver/VirtualSerial/doxyfile create mode 100644 Demos/Device/ClassDriver/VirtualSerial/makefile create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Config/AppConfig.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Descriptors.c create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Descriptors.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/LUFA VirtualSerialMassStorage.inf create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Lib/DataflashManager.c create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Lib/DataflashManager.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Lib/SCSI.c create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/Lib/SCSI.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.c create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.txt create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/asf.xml create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/doxyfile create mode 100644 Demos/Device/ClassDriver/VirtualSerialMassStorage/makefile create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/Config/LUFAConfig.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/Descriptors.c create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/Descriptors.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/LUFA VirtualSerialMouse.inf create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.txt create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/asf.xml create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/doxyfile create mode 100644 Demos/Device/ClassDriver/VirtualSerialMouse/makefile create mode 100644 Demos/Device/ClassDriver/makefile create mode 100644 Demos/Device/Incomplete/TestAndMeasurement/Config/LUFAConfig.h create mode 100644 Demos/Device/Incomplete/TestAndMeasurement/Descriptors.c create mode 100644 Demos/Device/Incomplete/TestAndMeasurement/Descriptors.h create mode 100644 Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.c create mode 100644 Demos/Device/Incomplete/TestAndMeasurement/TestAndMeasurement.h create mode 100644 Demos/Device/Incomplete/TestAndMeasurement/makefile create mode 100644 Demos/Device/LowLevel/AudioInput/AudioInput.c create mode 100644 Demos/Device/LowLevel/AudioInput/AudioInput.h create mode 100644 Demos/Device/LowLevel/AudioInput/AudioInput.txt create mode 100644 Demos/Device/LowLevel/AudioInput/Config/AppConfig.h create mode 100644 Demos/Device/LowLevel/AudioInput/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/AudioInput/Descriptors.c create mode 100644 Demos/Device/LowLevel/AudioInput/Descriptors.h create mode 100644 Demos/Device/LowLevel/AudioInput/asf.xml create mode 100644 Demos/Device/LowLevel/AudioInput/doxyfile create mode 100644 Demos/Device/LowLevel/AudioInput/makefile create mode 100644 Demos/Device/LowLevel/AudioOutput/AudioOutput.c create mode 100644 Demos/Device/LowLevel/AudioOutput/AudioOutput.h create mode 100644 Demos/Device/LowLevel/AudioOutput/AudioOutput.txt create mode 100644 Demos/Device/LowLevel/AudioOutput/Config/AppConfig.h create mode 100644 Demos/Device/LowLevel/AudioOutput/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/AudioOutput/Descriptors.c create mode 100644 Demos/Device/LowLevel/AudioOutput/Descriptors.h create mode 100644 Demos/Device/LowLevel/AudioOutput/asf.xml create mode 100644 Demos/Device/LowLevel/AudioOutput/doxyfile create mode 100644 Demos/Device/LowLevel/AudioOutput/makefile create mode 100644 Demos/Device/LowLevel/BulkVendor/BulkVendor.c create mode 100644 Demos/Device/LowLevel/BulkVendor/BulkVendor.h create mode 100644 Demos/Device/LowLevel/BulkVendor/BulkVendor.txt create mode 100644 Demos/Device/LowLevel/BulkVendor/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/BulkVendor/Descriptors.c create mode 100644 Demos/Device/LowLevel/BulkVendor/Descriptors.h create mode 100644 Demos/Device/LowLevel/BulkVendor/HostTestApp/test_bulk_vendor.py create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/LUFA_Bulk_Vendor_Demo.inf create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/amd64/libusb0.dll create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/amd64/libusb0.sys create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/ia64/libusb0.dll create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/ia64/libusb0.sys create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/installer_x64.exe create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/installer_x86.exe create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/license/libusb0/installer_license.txt create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/x86/libusb0.sys create mode 100644 Demos/Device/LowLevel/BulkVendor/WindowsDriver/x86/libusb0_x86.dll create mode 100644 Demos/Device/LowLevel/BulkVendor/asf.xml create mode 100644 Demos/Device/LowLevel/BulkVendor/doxyfile create mode 100644 Demos/Device/LowLevel/BulkVendor/makefile create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/Descriptors.c create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/Descriptors.h create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.txt create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/LUFA DualVirtualSerial.inf create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/asf.xml create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/doxyfile create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/makefile create mode 100644 Demos/Device/LowLevel/GenericHID/Config/AppConfig.h create mode 100644 Demos/Device/LowLevel/GenericHID/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/GenericHID/Descriptors.c create mode 100644 Demos/Device/LowLevel/GenericHID/Descriptors.h create mode 100644 Demos/Device/LowLevel/GenericHID/GenericHID.c create mode 100644 Demos/Device/LowLevel/GenericHID/GenericHID.h create mode 100644 Demos/Device/LowLevel/GenericHID/GenericHID.txt create mode 100644 Demos/Device/LowLevel/GenericHID/HostTestApp/test_generic_hid.py create mode 100644 Demos/Device/LowLevel/GenericHID/asf.xml create mode 100644 Demos/Device/LowLevel/GenericHID/doxyfile create mode 100644 Demos/Device/LowLevel/GenericHID/makefile create mode 100644 Demos/Device/LowLevel/Joystick/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/Joystick/Descriptors.c create mode 100644 Demos/Device/LowLevel/Joystick/Descriptors.h create mode 100644 Demos/Device/LowLevel/Joystick/Joystick.c create mode 100644 Demos/Device/LowLevel/Joystick/Joystick.h create mode 100644 Demos/Device/LowLevel/Joystick/Joystick.txt create mode 100644 Demos/Device/LowLevel/Joystick/asf.xml create mode 100644 Demos/Device/LowLevel/Joystick/doxyfile create mode 100644 Demos/Device/LowLevel/Joystick/makefile create mode 100644 Demos/Device/LowLevel/Keyboard/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/Keyboard/Descriptors.c create mode 100644 Demos/Device/LowLevel/Keyboard/Descriptors.h create mode 100644 Demos/Device/LowLevel/Keyboard/Keyboard.c create mode 100644 Demos/Device/LowLevel/Keyboard/Keyboard.h create mode 100644 Demos/Device/LowLevel/Keyboard/Keyboard.txt create mode 100644 Demos/Device/LowLevel/Keyboard/asf.xml create mode 100644 Demos/Device/LowLevel/Keyboard/doxyfile create mode 100644 Demos/Device/LowLevel/Keyboard/makefile create mode 100644 Demos/Device/LowLevel/KeyboardMouse/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/KeyboardMouse/Descriptors.c create mode 100644 Demos/Device/LowLevel/KeyboardMouse/Descriptors.h create mode 100644 Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.c create mode 100644 Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.h create mode 100644 Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.txt create mode 100644 Demos/Device/LowLevel/KeyboardMouse/asf.xml create mode 100644 Demos/Device/LowLevel/KeyboardMouse/doxyfile create mode 100644 Demos/Device/LowLevel/KeyboardMouse/makefile create mode 100644 Demos/Device/LowLevel/MIDI/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/MIDI/Descriptors.c create mode 100644 Demos/Device/LowLevel/MIDI/Descriptors.h create mode 100644 Demos/Device/LowLevel/MIDI/MIDI.c create mode 100644 Demos/Device/LowLevel/MIDI/MIDI.h create mode 100644 Demos/Device/LowLevel/MIDI/MIDI.txt create mode 100644 Demos/Device/LowLevel/MIDI/asf.xml create mode 100644 Demos/Device/LowLevel/MIDI/doxyfile create mode 100644 Demos/Device/LowLevel/MIDI/makefile create mode 100644 Demos/Device/LowLevel/MassStorage/Config/AppConfig.h create mode 100644 Demos/Device/LowLevel/MassStorage/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/MassStorage/Descriptors.c create mode 100644 Demos/Device/LowLevel/MassStorage/Descriptors.h create mode 100644 Demos/Device/LowLevel/MassStorage/Lib/DataflashManager.c create mode 100644 Demos/Device/LowLevel/MassStorage/Lib/DataflashManager.h create mode 100644 Demos/Device/LowLevel/MassStorage/Lib/SCSI.c create mode 100644 Demos/Device/LowLevel/MassStorage/Lib/SCSI.h create mode 100644 Demos/Device/LowLevel/MassStorage/MassStorage.c create mode 100644 Demos/Device/LowLevel/MassStorage/MassStorage.h create mode 100644 Demos/Device/LowLevel/MassStorage/MassStorage.txt create mode 100644 Demos/Device/LowLevel/MassStorage/asf.xml create mode 100644 Demos/Device/LowLevel/MassStorage/doxyfile create mode 100644 Demos/Device/LowLevel/MassStorage/makefile create mode 100644 Demos/Device/LowLevel/Mouse/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/Mouse/Descriptors.c create mode 100644 Demos/Device/LowLevel/Mouse/Descriptors.h create mode 100644 Demos/Device/LowLevel/Mouse/Mouse.c create mode 100644 Demos/Device/LowLevel/Mouse/Mouse.h create mode 100644 Demos/Device/LowLevel/Mouse/Mouse.txt create mode 100644 Demos/Device/LowLevel/Mouse/asf.xml create mode 100644 Demos/Device/LowLevel/Mouse/doxyfile create mode 100644 Demos/Device/LowLevel/Mouse/makefile create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Config/AppConfig.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Descriptors.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Descriptors.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/EthernetProtocols.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/ProtocolDecoders.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.c create mode 100644 Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.h create mode 100644 Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.txt create mode 100644 Demos/Device/LowLevel/RNDISEthernet/asf.xml create mode 100644 Demos/Device/LowLevel/RNDISEthernet/doxyfile create mode 100644 Demos/Device/LowLevel/RNDISEthernet/makefile create mode 100644 Demos/Device/LowLevel/VirtualSerial/Config/LUFAConfig.h create mode 100644 Demos/Device/LowLevel/VirtualSerial/Descriptors.c create mode 100644 Demos/Device/LowLevel/VirtualSerial/Descriptors.h create mode 100644 Demos/Device/LowLevel/VirtualSerial/LUFA VirtualSerial.inf create mode 100644 Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c create mode 100644 Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h create mode 100644 Demos/Device/LowLevel/VirtualSerial/VirtualSerial.txt create mode 100644 Demos/Device/LowLevel/VirtualSerial/asf.xml create mode 100644 Demos/Device/LowLevel/VirtualSerial/doxyfile create mode 100644 Demos/Device/LowLevel/VirtualSerial/makefile create mode 100644 Demos/Device/LowLevel/makefile create mode 100644 Demos/Device/makefile create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/Config/LUFAConfig.h create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/Descriptors.c create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/Descriptors.h create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/HostFunctions.c create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/HostFunctions.h create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/MouseHostDevice.c create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/MouseHostDevice.h create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/MouseHostDevice.txt create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/asf.xml create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/doxyfile create mode 100644 Demos/DualRole/ClassDriver/MouseHostDevice/makefile create mode 100644 Demos/DualRole/ClassDriver/makefile create mode 100644 Demos/DualRole/makefile create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/AndroidAccessoryHost.c create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/AndroidAccessoryHost.h create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/AndroidAccessoryHost.txt create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/AndroidHostApp/AndroidHostApp.zip create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/asf.xml create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/doxyfile create mode 100644 Demos/Host/ClassDriver/AndroidAccessoryHost/makefile create mode 100644 Demos/Host/ClassDriver/AudioInputHost/AudioInputHost.c create mode 100644 Demos/Host/ClassDriver/AudioInputHost/AudioInputHost.h create mode 100644 Demos/Host/ClassDriver/AudioInputHost/AudioInputHost.txt create mode 100644 Demos/Host/ClassDriver/AudioInputHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/AudioInputHost/asf.xml create mode 100644 Demos/Host/ClassDriver/AudioInputHost/doxyfile create mode 100644 Demos/Host/ClassDriver/AudioInputHost/makefile create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.c create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.h create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/AudioOutputHost.txt create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/Config/AppConfig.h create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/asf.xml create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/doxyfile create mode 100644 Demos/Host/ClassDriver/AudioOutputHost/makefile create mode 100644 Demos/Host/ClassDriver/JoystickHostWithParser/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/JoystickHostWithParser/JoystickHostWithParser.c create mode 100644 Demos/Host/ClassDriver/JoystickHostWithParser/JoystickHostWithParser.h create mode 100644 Demos/Host/ClassDriver/JoystickHostWithParser/JoystickHostWithParser.txt create mode 100644 Demos/Host/ClassDriver/JoystickHostWithParser/asf.xml create mode 100644 Demos/Host/ClassDriver/JoystickHostWithParser/doxyfile create mode 100644 Demos/Host/ClassDriver/JoystickHostWithParser/makefile create mode 100644 Demos/Host/ClassDriver/KeyboardHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.c create mode 100644 Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.h create mode 100644 Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.txt create mode 100644 Demos/Host/ClassDriver/KeyboardHost/asf.xml create mode 100644 Demos/Host/ClassDriver/KeyboardHost/doxyfile create mode 100644 Demos/Host/ClassDriver/KeyboardHost/makefile create mode 100644 Demos/Host/ClassDriver/KeyboardHostWithParser/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c create mode 100644 Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.h create mode 100644 Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.txt create mode 100644 Demos/Host/ClassDriver/KeyboardHostWithParser/asf.xml create mode 100644 Demos/Host/ClassDriver/KeyboardHostWithParser/doxyfile create mode 100644 Demos/Host/ClassDriver/KeyboardHostWithParser/makefile create mode 100644 Demos/Host/ClassDriver/MIDIHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/MIDIHost/MIDIHost.c create mode 100644 Demos/Host/ClassDriver/MIDIHost/MIDIHost.h create mode 100644 Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt create mode 100644 Demos/Host/ClassDriver/MIDIHost/asf.xml create mode 100644 Demos/Host/ClassDriver/MIDIHost/doxyfile create mode 100644 Demos/Host/ClassDriver/MIDIHost/makefile create mode 100644 Demos/Host/ClassDriver/MassStorageHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/MassStorageHost/MassStorageHost.c create mode 100644 Demos/Host/ClassDriver/MassStorageHost/MassStorageHost.h create mode 100644 Demos/Host/ClassDriver/MassStorageHost/MassStorageHost.txt create mode 100644 Demos/Host/ClassDriver/MassStorageHost/asf.xml create mode 100644 Demos/Host/ClassDriver/MassStorageHost/doxyfile create mode 100644 Demos/Host/ClassDriver/MassStorageHost/makefile create mode 100644 Demos/Host/ClassDriver/MouseHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/MouseHost/MouseHost.c create mode 100644 Demos/Host/ClassDriver/MouseHost/MouseHost.h create mode 100644 Demos/Host/ClassDriver/MouseHost/MouseHost.txt create mode 100644 Demos/Host/ClassDriver/MouseHost/asf.xml create mode 100644 Demos/Host/ClassDriver/MouseHost/doxyfile create mode 100644 Demos/Host/ClassDriver/MouseHost/makefile create mode 100644 Demos/Host/ClassDriver/MouseHostWithParser/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c create mode 100644 Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h create mode 100644 Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.txt create mode 100644 Demos/Host/ClassDriver/MouseHostWithParser/asf.xml create mode 100644 Demos/Host/ClassDriver/MouseHostWithParser/doxyfile create mode 100644 Demos/Host/ClassDriver/MouseHostWithParser/makefile create mode 100644 Demos/Host/ClassDriver/PrinterHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/PrinterHost/PrinterHost.c create mode 100644 Demos/Host/ClassDriver/PrinterHost/PrinterHost.h create mode 100644 Demos/Host/ClassDriver/PrinterHost/PrinterHost.txt create mode 100644 Demos/Host/ClassDriver/PrinterHost/asf.xml create mode 100644 Demos/Host/ClassDriver/PrinterHost/doxyfile create mode 100644 Demos/Host/ClassDriver/PrinterHost/makefile create mode 100644 Demos/Host/ClassDriver/RNDISEthernetHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.c create mode 100644 Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.h create mode 100644 Demos/Host/ClassDriver/RNDISEthernetHost/RNDISEthernetHost.txt create mode 100644 Demos/Host/ClassDriver/RNDISEthernetHost/asf.xml create mode 100644 Demos/Host/ClassDriver/RNDISEthernetHost/doxyfile create mode 100644 Demos/Host/ClassDriver/RNDISEthernetHost/makefile create mode 100644 Demos/Host/ClassDriver/StillImageHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/StillImageHost/StillImageHost.c create mode 100644 Demos/Host/ClassDriver/StillImageHost/StillImageHost.h create mode 100644 Demos/Host/ClassDriver/StillImageHost/StillImageHost.txt create mode 100644 Demos/Host/ClassDriver/StillImageHost/asf.xml create mode 100644 Demos/Host/ClassDriver/StillImageHost/doxyfile create mode 100644 Demos/Host/ClassDriver/StillImageHost/makefile create mode 100644 Demos/Host/ClassDriver/VirtualSerialHost/Config/LUFAConfig.h create mode 100644 Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c create mode 100644 Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h create mode 100644 Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.txt create mode 100644 Demos/Host/ClassDriver/VirtualSerialHost/asf.xml create mode 100644 Demos/Host/ClassDriver/VirtualSerialHost/doxyfile create mode 100644 Demos/Host/ClassDriver/VirtualSerialHost/makefile create mode 100644 Demos/Host/ClassDriver/makefile create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/AndroidAccessoryHost.c create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/AndroidAccessoryHost.h create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/AndroidAccessoryHost.txt create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/DeviceDescriptor.c create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/DeviceDescriptor.h create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.c create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.h create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/asf.xml create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/doxyfile create mode 100644 Demos/Host/LowLevel/AndroidAccessoryHost/makefile create mode 100644 Demos/Host/LowLevel/AudioInputHost/AudioInputHost.c create mode 100644 Demos/Host/LowLevel/AudioInputHost/AudioInputHost.h create mode 100644 Demos/Host/LowLevel/AudioInputHost/AudioInputHost.txt create mode 100644 Demos/Host/LowLevel/AudioInputHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/AudioInputHost/asf.xml create mode 100644 Demos/Host/LowLevel/AudioInputHost/doxyfile create mode 100644 Demos/Host/LowLevel/AudioInputHost/makefile create mode 100644 Demos/Host/LowLevel/AudioOutputHost/AudioOutputHost.c create mode 100644 Demos/Host/LowLevel/AudioOutputHost/AudioOutputHost.h create mode 100644 Demos/Host/LowLevel/AudioOutputHost/AudioOutputHost.txt create mode 100644 Demos/Host/LowLevel/AudioOutputHost/Config/AppConfig.h create mode 100644 Demos/Host/LowLevel/AudioOutputHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/AudioOutputHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/AudioOutputHost/asf.xml create mode 100644 Demos/Host/LowLevel/AudioOutputHost/doxyfile create mode 100644 Demos/Host/LowLevel/AudioOutputHost/makefile create mode 100644 Demos/Host/LowLevel/GenericHIDHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/GenericHIDHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/GenericHIDHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.c create mode 100644 Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.h create mode 100644 Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.txt create mode 100644 Demos/Host/LowLevel/GenericHIDHost/asf.xml create mode 100644 Demos/Host/LowLevel/GenericHIDHost/doxyfile create mode 100644 Demos/Host/LowLevel/GenericHIDHost/makefile create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/HIDReport.c create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/HIDReport.h create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/JoystickHostWithParser.c create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/JoystickHostWithParser.h create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/JoystickHostWithParser.txt create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/asf.xml create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/doxyfile create mode 100644 Demos/Host/LowLevel/JoystickHostWithParser/makefile create mode 100644 Demos/Host/LowLevel/KeyboardHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/KeyboardHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/KeyboardHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c create mode 100644 Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h create mode 100644 Demos/Host/LowLevel/KeyboardHost/KeyboardHost.txt create mode 100644 Demos/Host/LowLevel/KeyboardHost/asf.xml create mode 100644 Demos/Host/LowLevel/KeyboardHost/doxyfile create mode 100644 Demos/Host/LowLevel/KeyboardHost/makefile create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.h create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.c create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.h create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/KeyboardHostWithParser.txt create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/asf.xml create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/doxyfile create mode 100644 Demos/Host/LowLevel/KeyboardHostWithParser/makefile create mode 100644 Demos/Host/LowLevel/MIDIHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/MIDIHost/MIDIHost.c create mode 100644 Demos/Host/LowLevel/MIDIHost/MIDIHost.h create mode 100644 Demos/Host/LowLevel/MIDIHost/MIDIHost.txt create mode 100644 Demos/Host/LowLevel/MIDIHost/asf.xml create mode 100644 Demos/Host/LowLevel/MIDIHost/doxyfile create mode 100644 Demos/Host/LowLevel/MIDIHost/makefile create mode 100644 Demos/Host/LowLevel/MassStorageHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/MassStorageHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/MassStorageHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/MassStorageHost/Lib/MassStoreCommands.c create mode 100644 Demos/Host/LowLevel/MassStorageHost/Lib/MassStoreCommands.h create mode 100644 Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c create mode 100644 Demos/Host/LowLevel/MassStorageHost/MassStorageHost.h create mode 100644 Demos/Host/LowLevel/MassStorageHost/MassStorageHost.txt create mode 100644 Demos/Host/LowLevel/MassStorageHost/asf.xml create mode 100644 Demos/Host/LowLevel/MassStorageHost/doxyfile create mode 100644 Demos/Host/LowLevel/MassStorageHost/makefile create mode 100644 Demos/Host/LowLevel/MouseHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/MouseHost/MouseHost.c create mode 100644 Demos/Host/LowLevel/MouseHost/MouseHost.h create mode 100644 Demos/Host/LowLevel/MouseHost/MouseHost.txt create mode 100644 Demos/Host/LowLevel/MouseHost/asf.xml create mode 100644 Demos/Host/LowLevel/MouseHost/doxyfile create mode 100644 Demos/Host/LowLevel/MouseHost/makefile create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/HIDReport.c create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/HIDReport.h create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.c create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.h create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.txt create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/asf.xml create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/doxyfile create mode 100644 Demos/Host/LowLevel/MouseHostWithParser/makefile create mode 100644 Demos/Host/LowLevel/PrinterHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.c create mode 100644 Demos/Host/LowLevel/PrinterHost/Lib/PrinterCommands.h create mode 100644 Demos/Host/LowLevel/PrinterHost/PrinterHost.c create mode 100644 Demos/Host/LowLevel/PrinterHost/PrinterHost.h create mode 100644 Demos/Host/LowLevel/PrinterHost/PrinterHost.txt create mode 100644 Demos/Host/LowLevel/PrinterHost/asf.xml create mode 100644 Demos/Host/LowLevel/PrinterHost/doxyfile create mode 100644 Demos/Host/LowLevel/PrinterHost/makefile create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.h create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/RNDISEthernetHost.c create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/RNDISEthernetHost.h create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/RNDISHost.txt create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/asf.xml create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/doxyfile create mode 100644 Demos/Host/LowLevel/RNDISEthernetHost/makefile create mode 100644 Demos/Host/LowLevel/StillImageHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/StillImageHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/StillImageHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/StillImageHost/Lib/PIMACodes.h create mode 100644 Demos/Host/LowLevel/StillImageHost/Lib/StillImageCommands.c create mode 100644 Demos/Host/LowLevel/StillImageHost/Lib/StillImageCommands.h create mode 100644 Demos/Host/LowLevel/StillImageHost/StillImageHost.c create mode 100644 Demos/Host/LowLevel/StillImageHost/StillImageHost.h create mode 100644 Demos/Host/LowLevel/StillImageHost/StillImageHost.txt create mode 100644 Demos/Host/LowLevel/StillImageHost/asf.xml create mode 100644 Demos/Host/LowLevel/StillImageHost/doxyfile create mode 100644 Demos/Host/LowLevel/StillImageHost/makefile create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/Config/LUFAConfig.h create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.c create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/ConfigDescriptor.h create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.txt create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/asf.xml create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/doxyfile create mode 100644 Demos/Host/LowLevel/VirtualSerialHost/makefile create mode 100644 Demos/Host/LowLevel/makefile create mode 100644 Demos/Host/makefile create mode 100644 Demos/makefile create mode 100644 LUFA/Build/DMBS/.gitignore create mode 100644 LUFA/Build/DMBS/DMBS/HID_EEPROM_Loader/HID_EEPROM_Loader.c create mode 100644 LUFA/Build/DMBS/DMBS/HID_EEPROM_Loader/makefile create mode 100644 LUFA/Build/DMBS/DMBS/License.txt create mode 100644 LUFA/Build/DMBS/DMBS/ModulesOverview.md create mode 100644 LUFA/Build/DMBS/DMBS/WritingYourOwnModules.md create mode 100644 LUFA/Build/DMBS/DMBS/atprogram.md create mode 100644 LUFA/Build/DMBS/DMBS/atprogram.mk create mode 100644 LUFA/Build/DMBS/DMBS/avrdude.md create mode 100644 LUFA/Build/DMBS/DMBS/avrdude.mk create mode 100644 LUFA/Build/DMBS/DMBS/core.md create mode 100644 LUFA/Build/DMBS/DMBS/core.mk create mode 100644 LUFA/Build/DMBS/DMBS/cppcheck.md create mode 100644 LUFA/Build/DMBS/DMBS/cppcheck.mk create mode 100644 LUFA/Build/DMBS/DMBS/dfu.md create mode 100644 LUFA/Build/DMBS/DMBS/dfu.mk create mode 100644 LUFA/Build/DMBS/DMBS/doxygen.md create mode 100644 LUFA/Build/DMBS/DMBS/doxygen.mk create mode 100644 LUFA/Build/DMBS/DMBS/gcc.md create mode 100644 LUFA/Build/DMBS/DMBS/gcc.mk create mode 100644 LUFA/Build/DMBS/DMBS/hid.md create mode 100644 LUFA/Build/DMBS/DMBS/hid.mk create mode 100644 LUFA/Build/DMBS/Readme.md create mode 100644 LUFA/Build/DMBS/Template/Template.c create mode 100644 LUFA/Build/DMBS/Template/makefile create mode 100644 LUFA/Build/LUFA/lufa-gcc.mk create mode 100644 LUFA/Build/LUFA/lufa-sources.mk create mode 100644 LUFA/Build/lufa_atprogram.mk create mode 100644 LUFA/Build/lufa_avrdude.mk create mode 100644 LUFA/Build/lufa_build.mk create mode 100644 LUFA/Build/lufa_core.mk create mode 100644 LUFA/Build/lufa_cppcheck.mk create mode 100644 LUFA/Build/lufa_dfu.mk create mode 100644 LUFA/Build/lufa_doxygen.mk create mode 100644 LUFA/Build/lufa_hid.mk create mode 100644 LUFA/Build/lufa_sources.mk create mode 100644 LUFA/CodeTemplates/DeviceTemplate/Descriptors.c create mode 100644 LUFA/CodeTemplates/DeviceTemplate/Descriptors.h create mode 100644 LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.c create mode 100644 LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.h create mode 100644 LUFA/CodeTemplates/DeviceTemplate/asf.xml create mode 100644 LUFA/CodeTemplates/DriverStubs/Board.h create mode 100644 LUFA/CodeTemplates/DriverStubs/Buttons.h create mode 100644 LUFA/CodeTemplates/DriverStubs/Dataflash.h create mode 100644 LUFA/CodeTemplates/DriverStubs/Joystick.h create mode 100644 LUFA/CodeTemplates/DriverStubs/LEDs.h create mode 100644 LUFA/CodeTemplates/HostTemplate/HostApplication.c create mode 100644 LUFA/CodeTemplates/HostTemplate/HostApplication.h create mode 100644 LUFA/CodeTemplates/HostTemplate/asf.xml create mode 100644 LUFA/CodeTemplates/LUFAConfig.h create mode 100644 LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf create mode 100644 LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf create mode 100644 LUFA/CodeTemplates/makefile_template create mode 100644 LUFA/Common/ArchitectureSpecific.h create mode 100644 LUFA/Common/Architectures.h create mode 100644 LUFA/Common/Attributes.h create mode 100644 LUFA/Common/BoardTypes.h create mode 100644 LUFA/Common/Common.h create mode 100644 LUFA/Common/CompilerSpecific.h create mode 100644 LUFA/Common/Endianness.h create mode 100644 LUFA/DoxygenPages/BuildSystem.txt create mode 100644 LUFA/DoxygenPages/BuildingLinkableLibraries.txt create mode 100644 LUFA/DoxygenPages/ChangeLog.txt create mode 100644 LUFA/DoxygenPages/CompileTimeTokens.txt create mode 100644 LUFA/DoxygenPages/CompilingApps.txt create mode 100644 LUFA/DoxygenPages/ConfiguringApps.txt create mode 100644 LUFA/DoxygenPages/DevelopingWithLUFA.txt create mode 100644 LUFA/DoxygenPages/DeviceSupport.txt create mode 100644 LUFA/DoxygenPages/DirectorySummaries.txt create mode 100644 LUFA/DoxygenPages/Donating.txt create mode 100644 LUFA/DoxygenPages/FutureChanges.txt create mode 100644 LUFA/DoxygenPages/GettingStarted.txt create mode 100644 LUFA/DoxygenPages/Groups.txt create mode 100644 LUFA/DoxygenPages/Images/Author.jpg create mode 100644 LUFA/DoxygenPages/Images/LUFA.png create mode 100644 LUFA/DoxygenPages/Images/LUFA_thumb.png create mode 100644 LUFA/DoxygenPages/KnownIssues.txt create mode 100644 LUFA/DoxygenPages/LUFAPoweredProjects.txt create mode 100644 LUFA/DoxygenPages/LibraryResources.txt create mode 100644 LUFA/DoxygenPages/LicenseInfo.txt create mode 100644 LUFA/DoxygenPages/MainPage.txt create mode 100644 LUFA/DoxygenPages/MigrationInformation.txt create mode 100644 LUFA/DoxygenPages/OSDrivers.txt create mode 100644 LUFA/DoxygenPages/ProgrammingApps.txt create mode 100644 LUFA/DoxygenPages/SoftwareBootloaderJump.txt create mode 100644 LUFA/DoxygenPages/Style/Footer.htm create mode 100644 LUFA/DoxygenPages/Style/Style.css create mode 100644 LUFA/DoxygenPages/VIDAndPIDValues.txt create mode 100644 LUFA/DoxygenPages/WritingBoardDrivers.txt create mode 100644 LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/BENITO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/BENITO/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/BENITO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/BUI/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/BUI/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h create mode 100644 LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/CULV3/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/CULV3/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/CULV3/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/DUCE/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/DUCE/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/EVK527/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/EVK527/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h create mode 100644 LUFA/Drivers/Board/AVR8/EVK527/Joystick.h create mode 100644 LUFA/Drivers/Board/AVR8/EVK527/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/JMDBU2/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/LEONARDO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/MICRO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/MICRO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/MINIMUS/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/MULTIO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/POLOLUMICRO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/POLOLUMICRO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/QMK/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/QMK/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/STK525/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/STK525/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/STK525/Dataflash.h create mode 100644 LUFA/Drivers/Board/AVR8/STK525/Joystick.h create mode 100644 LUFA/Drivers/Board/AVR8/STK525/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/STK526/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/STK526/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/STK526/Dataflash.h create mode 100644 LUFA/Drivers/Board/AVR8/STK526/Joystick.h create mode 100644 LUFA/Drivers/Board/AVR8/STK526/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/TEENSY/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/TUL/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/TUL/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/TUL/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/U2S/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/U2S/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/U2S/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/UDIP/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/UDIP/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/UDIP/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/UNO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/UNO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/USB2AX/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/USBFOO/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/USBKEY/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h create mode 100644 LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h create mode 100644 LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h create mode 100644 LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/XPLAIN/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h create mode 100644 LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/XPLAINED_MINI/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/XPLAINED_MINI/LEDs.h create mode 100644 LUFA/Drivers/Board/AVR8/YUN/Board.h create mode 100644 LUFA/Drivers/Board/AVR8/YUN/LEDs.h create mode 100644 LUFA/Drivers/Board/Board.h create mode 100644 LUFA/Drivers/Board/Buttons.h create mode 100644 LUFA/Drivers/Board/Dataflash.h create mode 100644 LUFA/Drivers/Board/Joystick.h create mode 100644 LUFA/Drivers/Board/LEDs.h create mode 100644 LUFA/Drivers/Board/Temperature.c create mode 100644 LUFA/Drivers/Board/Temperature.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1100/Board.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1100/Buttons.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1100/Joystick.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1100/LEDs.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1101/Board.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1101/Buttons.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1101/Joystick.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1101/LEDs.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1104/Board.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1104/Buttons.h create mode 100644 LUFA/Drivers/Board/UC3/EVK1104/LEDs.h create mode 100644 LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h create mode 100644 LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h create mode 100644 LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h create mode 100644 LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h create mode 100644 LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h create mode 100644 LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h create mode 100644 LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h create mode 100644 LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h create mode 100644 LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h create mode 100644 LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h create mode 100644 LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h create mode 100644 LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h create mode 100644 LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Buttons.h create mode 100644 LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h create mode 100644 LUFA/Drivers/Misc/AT45DB321C.h create mode 100644 LUFA/Drivers/Misc/AT45DB642D.h create mode 100644 LUFA/Drivers/Misc/RingBuffer.h create mode 100644 LUFA/Drivers/Misc/TerminalCodes.h create mode 100644 LUFA/Drivers/Peripheral/ADC.h create mode 100644 LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h create mode 100644 LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h create mode 100644 LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h create mode 100644 LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c create mode 100644 LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h create mode 100644 LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c create mode 100644 LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h create mode 100644 LUFA/Drivers/Peripheral/SPI.h create mode 100644 LUFA/Drivers/Peripheral/Serial.h create mode 100644 LUFA/Drivers/Peripheral/SerialSPI.h create mode 100644 LUFA/Drivers/Peripheral/TWI.h create mode 100644 LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h create mode 100644 LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h create mode 100644 LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c create mode 100644 LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h create mode 100644 LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c create mode 100644 LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h create mode 100644 LUFA/Drivers/USB/Class/AndroidAccessoryClass.h create mode 100644 LUFA/Drivers/USB/Class/AudioClass.h create mode 100644 LUFA/Drivers/USB/Class/CDCClass.h create mode 100644 LUFA/Drivers/USB/Class/Common/AndroidAccessoryClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/AudioClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/CDCClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/HIDClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/HIDParser.c create mode 100644 LUFA/Drivers/USB/Class/Common/HIDParser.h create mode 100644 LUFA/Drivers/USB/Class/Common/HIDReportData.h create mode 100644 LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/MassStorageClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Common/StillImageClassCommon.h create mode 100644 LUFA/Drivers/USB/Class/Device/AudioClassDevice.c create mode 100644 LUFA/Drivers/USB/Class/Device/AudioClassDevice.h create mode 100644 LUFA/Drivers/USB/Class/Device/CDCClassDevice.c create mode 100644 LUFA/Drivers/USB/Class/Device/CDCClassDevice.h create mode 100644 LUFA/Drivers/USB/Class/Device/HIDClassDevice.c create mode 100644 LUFA/Drivers/USB/Class/Device/HIDClassDevice.h create mode 100644 LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c create mode 100644 LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h create mode 100644 LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c create mode 100644 LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.h create mode 100644 LUFA/Drivers/USB/Class/Device/PrinterClassDevice.c create mode 100644 LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h create mode 100644 LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c create mode 100644 LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h create mode 100644 LUFA/Drivers/USB/Class/HIDClass.h create mode 100644 LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/AudioClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/AudioClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/CDCClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/CDCClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/HIDClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/HIDClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/MIDIClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/MIDIClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/PrinterClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/PrinterClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/RNDISClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/RNDISClassHost.h create mode 100644 LUFA/Drivers/USB/Class/Host/StillImageClassHost.c create mode 100644 LUFA/Drivers/USB/Class/Host/StillImageClassHost.h create mode 100644 LUFA/Drivers/USB/Class/MIDIClass.h create mode 100644 LUFA/Drivers/USB/Class/MassStorageClass.h create mode 100644 LUFA/Drivers/USB/Class/PrinterClass.h create mode 100644 LUFA/Drivers/USB/Class/RNDISClass.h create mode 100644 LUFA/Drivers/USB/Class/StillImageClass.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_R.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_W.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_RW.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/Template/Template_Pipe_RW.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c create mode 100644 LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h create mode 100644 LUFA/Drivers/USB/Core/ConfigDescriptors.c create mode 100644 LUFA/Drivers/USB/Core/ConfigDescriptors.h create mode 100644 LUFA/Drivers/USB/Core/Device.h create mode 100644 LUFA/Drivers/USB/Core/DeviceStandardReq.c create mode 100644 LUFA/Drivers/USB/Core/DeviceStandardReq.h create mode 100644 LUFA/Drivers/USB/Core/Endpoint.h create mode 100644 LUFA/Drivers/USB/Core/EndpointStream.h create mode 100644 LUFA/Drivers/USB/Core/Events.c create mode 100644 LUFA/Drivers/USB/Core/Events.h create mode 100644 LUFA/Drivers/USB/Core/Host.h create mode 100644 LUFA/Drivers/USB/Core/HostStandardReq.c create mode 100644 LUFA/Drivers/USB/Core/HostStandardReq.h create mode 100644 LUFA/Drivers/USB/Core/OTG.h create mode 100644 LUFA/Drivers/USB/Core/Pipe.h create mode 100644 LUFA/Drivers/USB/Core/PipeStream.h create mode 100644 LUFA/Drivers/USB/Core/StdDescriptors.h create mode 100644 LUFA/Drivers/USB/Core/StdRequestType.h create mode 100644 LUFA/Drivers/USB/Core/UC3/Device_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/Device_UC3.h create mode 100644 LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h create mode 100644 LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h create mode 100644 LUFA/Drivers/USB/Core/UC3/Host_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/Host_UC3.h create mode 100644 LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h create mode 100644 LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h create mode 100644 LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_R.c create mode 100644 LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_W.c create mode 100644 LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_RW.c create mode 100644 LUFA/Drivers/USB/Core/UC3/Template/Template_Pipe_RW.c create mode 100644 LUFA/Drivers/USB/Core/UC3/USBController_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/USBController_UC3.h create mode 100644 LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c create mode 100644 LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h create mode 100644 LUFA/Drivers/USB/Core/USBController.h create mode 100644 LUFA/Drivers/USB/Core/USBInterrupt.h create mode 100644 LUFA/Drivers/USB/Core/USBMode.h create mode 100644 LUFA/Drivers/USB/Core/USBTask.c create mode 100644 LUFA/Drivers/USB/Core/USBTask.h create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h create mode 100644 LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.h create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_R.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_W.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_RW.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h create mode 100644 LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c create mode 100644 LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h create mode 100644 LUFA/Drivers/USB/USB.h create mode 100644 LUFA/License.txt create mode 100644 LUFA/Platform/Platform.h create mode 100644 LUFA/Platform/UC3/ClockManagement.h create mode 100644 LUFA/Platform/UC3/Exception.S create mode 100644 LUFA/Platform/UC3/InterruptManagement.c create mode 100644 LUFA/Platform/UC3/InterruptManagement.h create mode 100644 LUFA/Platform/UC3/UC3ExperimentalInfo.txt create mode 100644 LUFA/Platform/XMEGA/ClockManagement.h create mode 100644 LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt create mode 100644 LUFA/StudioIntegration/Docbook/mshelp/README.txt create mode 100644 LUFA/StudioIntegration/Docbook/mshelp/docbook.xsl create mode 100644 LUFA/StudioIntegration/Docbook/mshelp/hv1-common.xsl create mode 100644 LUFA/StudioIntegration/Docbook/placeholder.txt create mode 100644 LUFA/StudioIntegration/HV1/helpcontentsetup.msha create mode 100644 LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt create mode 100644 LUFA/StudioIntegration/HV1/lufa_helpcontentsetup_transform.xslt create mode 100644 LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt create mode 100644 LUFA/StudioIntegration/HV1/lufa_studio_help_styling.css create mode 100644 LUFA/StudioIntegration/VSIX/LUFA.dll create mode 100644 LUFA/StudioIntegration/VSIX/LUFA.pkgdef create mode 100644 LUFA/StudioIntegration/VSIX/[Content_Types].xml create mode 100644 LUFA/StudioIntegration/VSIX/asf-manifest.xml create mode 100644 LUFA/StudioIntegration/VSIX/extension.vsixmanifest create mode 100644 LUFA/StudioIntegration/VSIX/generate_caches.py create mode 100644 LUFA/StudioIntegration/VSIX/lufa_asfmanifest_transform.xslt create mode 100644 LUFA/StudioIntegration/VSIX/lufa_vsmanifest_transform.xslt create mode 100644 LUFA/StudioIntegration/XDK/lufa_extension_transform.xslt create mode 100644 LUFA/StudioIntegration/XDK/lufa_filelist_transform.xslt create mode 100644 LUFA/StudioIntegration/XDK/lufa_indent_transform.xslt create mode 100644 LUFA/StudioIntegration/XDK/lufa_module_transform.xslt create mode 100644 LUFA/StudioIntegration/lufa.xml create mode 100644 LUFA/StudioIntegration/lufa_common.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_board.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_board_names.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_misc.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_peripheral.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_android.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_audio.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_cdc.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_hid.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_midi.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_ms.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_printer.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_rndis.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_class_si.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_core.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_core_avr8.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_core_uc3.xml create mode 100644 LUFA/StudioIntegration/lufa_drivers_usb_core_xmega.xml create mode 100644 LUFA/StudioIntegration/lufa_platform.xml create mode 100644 LUFA/StudioIntegration/lufa_platform_uc3.xml create mode 100644 LUFA/StudioIntegration/lufa_platform_xmega.xml create mode 100644 LUFA/StudioIntegration/lufa_toolchain.xml create mode 100644 LUFA/StudioIntegration/makefile create mode 100644 LUFA/Version.h create mode 100644 LUFA/doxyfile create mode 100644 LUFA/makefile create mode 100644 Maintenance/lufa_functionlist_transform.xslt create mode 100644 Maintenance/makefile create mode 100644 Projects/AVRISP-MKII/AVRISP-MKII.c create mode 100644 Projects/AVRISP-MKII/AVRISP-MKII.h create mode 100644 Projects/AVRISP-MKII/AVRISP-MKII.txt create mode 100644 Projects/AVRISP-MKII/AVRISPDescriptors.c create mode 100644 Projects/AVRISP-MKII/AVRISPDescriptors.h create mode 100644 Projects/AVRISP-MKII/Config/AppConfig.h create mode 100644 Projects/AVRISP-MKII/Config/LUFAConfig.h create mode 100644 Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c create mode 100644 Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h create mode 100644 Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c create mode 100644 Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h create mode 100644 Projects/AVRISP-MKII/Lib/V2Protocol.c create mode 100644 Projects/AVRISP-MKII/Lib/V2Protocol.h create mode 100644 Projects/AVRISP-MKII/Lib/V2ProtocolConstants.h create mode 100644 Projects/AVRISP-MKII/Lib/V2ProtocolParams.c create mode 100644 Projects/AVRISP-MKII/Lib/V2ProtocolParams.h create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.c create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.h create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c create mode 100644 Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h create mode 100644 Projects/AVRISP-MKII/WindowsDriver/AVRISP_mkII.inf create mode 100644 Projects/AVRISP-MKII/WindowsDriver/amd64/libusb0.dll create mode 100644 Projects/AVRISP-MKII/WindowsDriver/amd64/libusb0.sys create mode 100644 Projects/AVRISP-MKII/WindowsDriver/avrisp_mkii.cat create mode 100644 Projects/AVRISP-MKII/WindowsDriver/ia64/libusb0.dll create mode 100644 Projects/AVRISP-MKII/WindowsDriver/ia64/libusb0.sys create mode 100644 Projects/AVRISP-MKII/WindowsDriver/installer_x64.exe create mode 100644 Projects/AVRISP-MKII/WindowsDriver/installer_x86.exe create mode 100644 Projects/AVRISP-MKII/WindowsDriver/license/libusb0/installer_license.txt create mode 100644 Projects/AVRISP-MKII/WindowsDriver/x86/libusb0.sys create mode 100644 Projects/AVRISP-MKII/WindowsDriver/x86/libusb0_x86.dll create mode 100644 Projects/AVRISP-MKII/asf.xml create mode 100644 Projects/AVRISP-MKII/doxyfile create mode 100644 Projects/AVRISP-MKII/makefile create mode 100644 Projects/Benito/Benito.c create mode 100644 Projects/Benito/Benito.h create mode 100644 Projects/Benito/Benito.txt create mode 100644 Projects/Benito/Config/AppConfig.h create mode 100644 Projects/Benito/Config/LUFAConfig.h create mode 100644 Projects/Benito/Descriptors.c create mode 100644 Projects/Benito/Descriptors.h create mode 100644 Projects/Benito/LUFA Benito Programmer.inf create mode 100644 Projects/Benito/asf.xml create mode 100644 Projects/Benito/doxyfile create mode 100644 Projects/Benito/makefile create mode 100644 Projects/HIDReportViewer/Config/LUFAConfig.h create mode 100644 Projects/HIDReportViewer/HIDReportViewer.c create mode 100644 Projects/HIDReportViewer/HIDReportViewer.h create mode 100644 Projects/HIDReportViewer/HIDReportViewer.txt create mode 100644 Projects/HIDReportViewer/asf.xml create mode 100644 Projects/HIDReportViewer/doxyfile create mode 100644 Projects/HIDReportViewer/makefile create mode 100644 Projects/LEDNotifier/CPUUsageApp/CPUMonitor.Designer.cs create mode 100644 Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs create mode 100644 Projects/LEDNotifier/CPUUsageApp/CPUMonitor.csproj create mode 100644 Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx create mode 100644 Projects/LEDNotifier/CPUUsageApp/Program.cs create mode 100644 Projects/LEDNotifier/CPUUsageApp/Properties/AssemblyInfo.cs create mode 100644 Projects/LEDNotifier/CPUUsageApp/Properties/Resources.Designer.cs create mode 100644 Projects/LEDNotifier/CPUUsageApp/Properties/Resources.resx create mode 100644 Projects/LEDNotifier/CPUUsageApp/Properties/Settings.Designer.cs create mode 100644 Projects/LEDNotifier/CPUUsageApp/Properties/Settings.settings create mode 100644 Projects/LEDNotifier/Config/LUFAConfig.h create mode 100644 Projects/LEDNotifier/Descriptors.c create mode 100644 Projects/LEDNotifier/Descriptors.h create mode 100644 Projects/LEDNotifier/LEDMixerApp/LEDMixer.Designer.cs create mode 100644 Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs create mode 100644 Projects/LEDNotifier/LEDMixerApp/LEDMixer.csproj create mode 100644 Projects/LEDNotifier/LEDMixerApp/LEDMixer.resx create mode 100644 Projects/LEDNotifier/LEDMixerApp/Program.cs create mode 100644 Projects/LEDNotifier/LEDMixerApp/Properties/AssemblyInfo.cs create mode 100644 Projects/LEDNotifier/LEDMixerApp/Properties/Resources.Designer.cs create mode 100644 Projects/LEDNotifier/LEDMixerApp/Properties/Resources.resx create mode 100644 Projects/LEDNotifier/LEDMixerApp/Properties/Settings.Designer.cs create mode 100644 Projects/LEDNotifier/LEDMixerApp/Properties/Settings.settings create mode 100644 Projects/LEDNotifier/LEDNotifier.c create mode 100644 Projects/LEDNotifier/LEDNotifier.h create mode 100644 Projects/LEDNotifier/LEDNotifier.txt create mode 100644 Projects/LEDNotifier/LUFA LED Notifier.inf create mode 100644 Projects/LEDNotifier/asf.xml create mode 100644 Projects/LEDNotifier/doxyfile create mode 100644 Projects/LEDNotifier/makefile create mode 100644 Projects/MIDIToneGenerator/Config/AppConfig.h create mode 100644 Projects/MIDIToneGenerator/Config/LUFAConfig.h create mode 100644 Projects/MIDIToneGenerator/Descriptors.c create mode 100644 Projects/MIDIToneGenerator/Descriptors.h create mode 100644 Projects/MIDIToneGenerator/MIDIToneGenerator.c create mode 100644 Projects/MIDIToneGenerator/MIDIToneGenerator.h create mode 100644 Projects/MIDIToneGenerator/MIDIToneGenerator.txt create mode 100644 Projects/MIDIToneGenerator/asf.xml create mode 100644 Projects/MIDIToneGenerator/doxyfile create mode 100644 Projects/MIDIToneGenerator/makefile create mode 100644 Projects/Magstripe/Config/AppConfig.h create mode 100644 Projects/Magstripe/Config/LUFAConfig.h create mode 100644 Projects/Magstripe/Descriptors.c create mode 100644 Projects/Magstripe/Descriptors.h create mode 100644 Projects/Magstripe/Lib/CircularBitBuffer.c create mode 100644 Projects/Magstripe/Lib/CircularBitBuffer.h create mode 100644 Projects/Magstripe/Lib/MagstripeHW.h create mode 100644 Projects/Magstripe/Magstripe.c create mode 100644 Projects/Magstripe/Magstripe.h create mode 100644 Projects/Magstripe/Magstripe.txt create mode 100644 Projects/Magstripe/asf.xml create mode 100644 Projects/Magstripe/doxyfile create mode 100644 Projects/Magstripe/makefile create mode 100644 Projects/MediaController/Config/LUFAConfig.h create mode 100644 Projects/MediaController/Descriptors.c create mode 100644 Projects/MediaController/Descriptors.h create mode 100644 Projects/MediaController/MediaController.c create mode 100644 Projects/MediaController/MediaController.h create mode 100644 Projects/MediaController/MediaController.txt create mode 100644 Projects/MediaController/asf.xml create mode 100644 Projects/MediaController/doxyfile create mode 100644 Projects/MediaController/makefile create mode 100644 Projects/MissileLauncher/Config/LUFAConfig.h create mode 100644 Projects/MissileLauncher/ConfigDescriptor.c create mode 100644 Projects/MissileLauncher/ConfigDescriptor.h create mode 100644 Projects/MissileLauncher/MissileLauncher.c create mode 100644 Projects/MissileLauncher/MissileLauncher.h create mode 100644 Projects/MissileLauncher/MissileLauncher.txt create mode 100644 Projects/MissileLauncher/asf.xml create mode 100644 Projects/MissileLauncher/doxyfile create mode 100644 Projects/MissileLauncher/makefile create mode 100644 Projects/RelayBoard/Config/LUFAConfig.h create mode 100644 Projects/RelayBoard/Descriptors.c create mode 100644 Projects/RelayBoard/Descriptors.h create mode 100644 Projects/RelayBoard/RelayBoard.c create mode 100644 Projects/RelayBoard/RelayBoard.h create mode 100644 Projects/RelayBoard/RelayBoard.txt create mode 100644 Projects/RelayBoard/asf.xml create mode 100644 Projects/RelayBoard/doxyfile create mode 100644 Projects/RelayBoard/makefile create mode 100644 Projects/SerialToLCD/Config/LUFAConfig.h create mode 100644 Projects/SerialToLCD/Descriptors.c create mode 100644 Projects/SerialToLCD/Descriptors.h create mode 100644 Projects/SerialToLCD/LUFA SerialToLCD.inf create mode 100644 Projects/SerialToLCD/Lib/HD44780.c create mode 100644 Projects/SerialToLCD/Lib/HD44780.h create mode 100644 Projects/SerialToLCD/SerialToLCD.c create mode 100644 Projects/SerialToLCD/SerialToLCD.h create mode 100644 Projects/SerialToLCD/SerialToLCD.txt create mode 100644 Projects/SerialToLCD/asf.xml create mode 100644 Projects/SerialToLCD/doxyfile create mode 100644 Projects/SerialToLCD/makefile create mode 100644 Projects/TempDataLogger/Config/AppConfig.h create mode 100644 Projects/TempDataLogger/Config/LUFAConfig.h create mode 100644 Projects/TempDataLogger/Descriptors.c create mode 100644 Projects/TempDataLogger/Descriptors.h create mode 100644 Projects/TempDataLogger/Lib/DataflashManager.c create mode 100644 Projects/TempDataLogger/Lib/DataflashManager.h create mode 100644 Projects/TempDataLogger/Lib/FATFs/00readme.txt create mode 100644 Projects/TempDataLogger/Lib/FATFs/diskio.c create mode 100644 Projects/TempDataLogger/Lib/FATFs/diskio.h create mode 100644 Projects/TempDataLogger/Lib/FATFs/ff.c create mode 100644 Projects/TempDataLogger/Lib/FATFs/ff.h create mode 100644 Projects/TempDataLogger/Lib/FATFs/ffconf.h create mode 100644 Projects/TempDataLogger/Lib/FATFs/integer.h create mode 100644 Projects/TempDataLogger/Lib/RTC.c create mode 100644 Projects/TempDataLogger/Lib/RTC.h create mode 100644 Projects/TempDataLogger/Lib/SCSI.c create mode 100644 Projects/TempDataLogger/Lib/SCSI.h create mode 100644 Projects/TempDataLogger/TempDataLogger.c create mode 100644 Projects/TempDataLogger/TempDataLogger.h create mode 100644 Projects/TempDataLogger/TempLogHostApp/COPYING.LESSER.txt create mode 100644 Projects/TempDataLogger/TempLogHostApp/COPYING.txt create mode 100644 Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.Designer.cs create mode 100644 Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs create mode 100644 Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.resx create mode 100644 Projects/TempDataLogger/TempLogHostApp/Hid.Linux.dll create mode 100644 Projects/TempDataLogger/TempLogHostApp/Hid.Net.dll create mode 100644 Projects/TempDataLogger/TempLogHostApp/Hid.Win32.dll create mode 100644 Projects/TempDataLogger/TempLogHostApp/Program.cs create mode 100644 Projects/TempDataLogger/TempLogHostApp/Properties/AssemblyInfo.cs create mode 100644 Projects/TempDataLogger/TempLogHostApp/Properties/Resources.Designer.cs create mode 100644 Projects/TempDataLogger/TempLogHostApp/Properties/Resources.resx create mode 100644 Projects/TempDataLogger/TempLogHostApp/Properties/Settings.Designer.cs create mode 100644 Projects/TempDataLogger/TempLogHostApp/Properties/Settings.settings create mode 100644 Projects/TempDataLogger/TempLogHostApp/README.txt create mode 100644 Projects/TempDataLogger/TempLogHostApp/TempLoggerHostApp.csproj create mode 100644 Projects/TempDataLogger/TempLogHostApp_Python/temp_log_config.py create mode 100644 Projects/TempDataLogger/TemperatureDataLogger.txt create mode 100644 Projects/TempDataLogger/asf.xml create mode 100644 Projects/TempDataLogger/doxyfile create mode 100644 Projects/TempDataLogger/makefile create mode 100644 Projects/USBtoSerial/Config/LUFAConfig.h create mode 100644 Projects/USBtoSerial/Descriptors.c create mode 100644 Projects/USBtoSerial/Descriptors.h create mode 100644 Projects/USBtoSerial/LUFA USBtoSerial.inf create mode 100644 Projects/USBtoSerial/USBtoSerial.c create mode 100644 Projects/USBtoSerial/USBtoSerial.h create mode 100644 Projects/USBtoSerial/USBtoSerial.txt create mode 100644 Projects/USBtoSerial/asf.xml create mode 100644 Projects/USBtoSerial/doxyfile create mode 100644 Projects/USBtoSerial/makefile create mode 100644 Projects/Webserver/Config/AppConfig.h create mode 100644 Projects/Webserver/Config/LUFAConfig.h create mode 100644 Projects/Webserver/Descriptors.c create mode 100644 Projects/Webserver/Descriptors.h create mode 100644 Projects/Webserver/LUFA Webserver RNDIS.inf create mode 100644 Projects/Webserver/Lib/DHCPClientApp.c create mode 100644 Projects/Webserver/Lib/DHCPClientApp.h create mode 100644 Projects/Webserver/Lib/DHCPCommon.c create mode 100644 Projects/Webserver/Lib/DHCPCommon.h create mode 100644 Projects/Webserver/Lib/DHCPServerApp.c create mode 100644 Projects/Webserver/Lib/DHCPServerApp.h create mode 100644 Projects/Webserver/Lib/DataflashManager.c create mode 100644 Projects/Webserver/Lib/DataflashManager.h create mode 100644 Projects/Webserver/Lib/FATFs/00readme.txt create mode 100644 Projects/Webserver/Lib/FATFs/diskio.c create mode 100644 Projects/Webserver/Lib/FATFs/diskio.h create mode 100644 Projects/Webserver/Lib/FATFs/ff.c create mode 100644 Projects/Webserver/Lib/FATFs/ff.h create mode 100644 Projects/Webserver/Lib/FATFs/ffconf.h create mode 100644 Projects/Webserver/Lib/FATFs/integer.h create mode 100644 Projects/Webserver/Lib/HTTPServerApp.c create mode 100644 Projects/Webserver/Lib/HTTPServerApp.h create mode 100644 Projects/Webserver/Lib/SCSI.c create mode 100644 Projects/Webserver/Lib/SCSI.h create mode 100644 Projects/Webserver/Lib/TELNETServerApp.c create mode 100644 Projects/Webserver/Lib/TELNETServerApp.h create mode 100644 Projects/Webserver/Lib/uIPManagement.c create mode 100644 Projects/Webserver/Lib/uIPManagement.h create mode 100644 Projects/Webserver/Lib/uip/clock.c create mode 100644 Projects/Webserver/Lib/uip/clock.h create mode 100644 Projects/Webserver/Lib/uip/timer.c create mode 100644 Projects/Webserver/Lib/uip/timer.h create mode 100644 Projects/Webserver/Lib/uip/uip-split.c create mode 100644 Projects/Webserver/Lib/uip/uip-split.h create mode 100644 Projects/Webserver/Lib/uip/uip.c create mode 100644 Projects/Webserver/Lib/uip/uip.h create mode 100644 Projects/Webserver/Lib/uip/uip_arp.c create mode 100644 Projects/Webserver/Lib/uip/uip_arp.h create mode 100644 Projects/Webserver/Lib/uip/uipopt.h create mode 100644 Projects/Webserver/USBDeviceMode.c create mode 100644 Projects/Webserver/USBDeviceMode.h create mode 100644 Projects/Webserver/USBHostMode.c create mode 100644 Projects/Webserver/USBHostMode.h create mode 100644 Projects/Webserver/Webserver.c create mode 100644 Projects/Webserver/Webserver.h create mode 100644 Projects/Webserver/Webserver.txt create mode 100644 Projects/Webserver/asf.xml create mode 100644 Projects/Webserver/doxyfile create mode 100644 Projects/Webserver/makefile create mode 100644 Projects/XPLAINBridge/Config/AppConfig.h create mode 100644 Projects/XPLAINBridge/Config/LUFAConfig.h create mode 100644 Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf create mode 100644 Projects/XPLAINBridge/Lib/SoftUART.c create mode 100644 Projects/XPLAINBridge/Lib/SoftUART.h create mode 100644 Projects/XPLAINBridge/USARTDescriptors.c create mode 100644 Projects/XPLAINBridge/USARTDescriptors.h create mode 100644 Projects/XPLAINBridge/XPLAINBridge.c create mode 100644 Projects/XPLAINBridge/XPLAINBridge.h create mode 100644 Projects/XPLAINBridge/XPLAINBridge.txt create mode 100644 Projects/XPLAINBridge/asf.xml create mode 100644 Projects/XPLAINBridge/doxyfile create mode 100644 Projects/XPLAINBridge/makefile create mode 100644 Projects/makefile create mode 100644 README.txt create mode 100644 makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..9f9d39491 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.o +*.d +*.elf +*.hex +*.eep +*.sym +*.bin +*.lss +*.map +*.bak +*.class +Documentation/ +LUFA/StudioIntegration/ProjectGenerator/* +LUFA/StudioIntegration/DocBook/* +!LUFA/StudioIntegration/Docbook/mshelp/* diff --git a/Bootloaders/CDC/BootloaderAPI.c b/Bootloaders/CDC/BootloaderAPI.c new file mode 100644 index 000000000..2be156808 --- /dev/null +++ b/Bootloaders/CDC/BootloaderAPI.c @@ -0,0 +1,75 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Bootloader user application API functions. + */ + +#include "BootloaderAPI.h" + +void BootloaderAPI_ErasePage(const uint32_t Address) +{ + boot_page_erase_safe(Address); + boot_spm_busy_wait(); + boot_rww_enable(); +} + +void BootloaderAPI_WritePage(const uint32_t Address) +{ + boot_page_write_safe(Address); + boot_spm_busy_wait(); + boot_rww_enable(); +} + +void BootloaderAPI_FillWord(const uint32_t Address, const uint16_t Word) +{ + boot_page_fill_safe(Address, Word); +} + +uint8_t BootloaderAPI_ReadSignature(const uint16_t Address) +{ + return boot_signature_byte_get(Address); +} + +uint8_t BootloaderAPI_ReadFuse(const uint16_t Address) +{ + return boot_lock_fuse_bits_get(Address); +} + +uint8_t BootloaderAPI_ReadLock(void) +{ + return boot_lock_fuse_bits_get(GET_LOCK_BITS); +} + +void BootloaderAPI_WriteLock(const uint8_t LockBits) +{ + boot_lock_bits_set_safe(LockBits); +} diff --git a/Bootloaders/CDC/BootloaderAPI.h b/Bootloaders/CDC/BootloaderAPI.h new file mode 100644 index 000000000..5169bbc3c --- /dev/null +++ b/Bootloaders/CDC/BootloaderAPI.h @@ -0,0 +1,58 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Header file for BootloaderAPI.c. + */ + +#ifndef _BOOTLOADER_API_H_ +#define _BOOTLOADER_API_H_ + + /* Includes: */ + #include + #include + #include + + #include + + #include "Config/AppConfig.h" + + /* Function Prototypes: */ + void BootloaderAPI_ErasePage(const uint32_t Address); + void BootloaderAPI_WritePage(const uint32_t Address); + void BootloaderAPI_FillWord(const uint32_t Address, const uint16_t Word); + uint8_t BootloaderAPI_ReadSignature(const uint16_t Address); + uint8_t BootloaderAPI_ReadFuse(const uint16_t Address); + uint8_t BootloaderAPI_ReadLock(void); + void BootloaderAPI_WriteLock(const uint8_t LockBits); + +#endif + diff --git a/Bootloaders/CDC/BootloaderAPITable.S b/Bootloaders/CDC/BootloaderAPITable.S new file mode 100644 index 000000000..2c60f84e8 --- /dev/null +++ b/Bootloaders/CDC/BootloaderAPITable.S @@ -0,0 +1,91 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +; Trampolines to actual API implementations if the target address is outside the +; range of a rjmp instruction (can happen with large bootloader sections) +.section .apitable_trampolines, "ax" +.global BootloaderAPI_Trampolines +BootloaderAPI_Trampolines: + + BootloaderAPI_ErasePage_Trampoline: + jmp BootloaderAPI_ErasePage + BootloaderAPI_WritePage_Trampoline: + jmp BootloaderAPI_WritePage + BootloaderAPI_FillWord_Trampoline: + jmp BootloaderAPI_FillWord + BootloaderAPI_ReadSignature_Trampoline: + jmp BootloaderAPI_ReadSignature + BootloaderAPI_ReadFuse_Trampoline: + jmp BootloaderAPI_ReadFuse + BootloaderAPI_ReadLock_Trampoline: + jmp BootloaderAPI_ReadLock + BootloaderAPI_WriteLock_Trampoline: + jmp BootloaderAPI_WriteLock + BootloaderAPI_UNUSED1: + ret + BootloaderAPI_UNUSED2: + ret + BootloaderAPI_UNUSED3: + ret + BootloaderAPI_UNUSED4: + ret + BootloaderAPI_UNUSED5: + ret + + + +; API function jump table +.section .apitable_jumptable, "ax" +.global BootloaderAPI_JumpTable +BootloaderAPI_JumpTable: + + rjmp BootloaderAPI_ErasePage_Trampoline + rjmp BootloaderAPI_WritePage_Trampoline + rjmp BootloaderAPI_FillWord_Trampoline + rjmp BootloaderAPI_ReadSignature_Trampoline + rjmp BootloaderAPI_ReadFuse_Trampoline + rjmp BootloaderAPI_ReadLock_Trampoline + rjmp BootloaderAPI_WriteLock_Trampoline + rjmp BootloaderAPI_UNUSED1 ; UNUSED ENTRY 1 + rjmp BootloaderAPI_UNUSED2 ; UNUSED ENTRY 2 + rjmp BootloaderAPI_UNUSED3 ; UNUSED ENTRY 3 + rjmp BootloaderAPI_UNUSED4 ; UNUSED ENTRY 4 + rjmp BootloaderAPI_UNUSED5 ; UNUSED ENTRY 5 + + + +; Bootloader table signatures and information +.section .apitable_signatures, "ax" +.global BootloaderAPI_Signatures +BootloaderAPI_Signatures: + + .long BOOT_START_ADDR ; Start address of the bootloader + .word 0xDF00 ; Signature for the CDC class bootloader + .word 0xDCFB ; Signature for a LUFA class bootloader diff --git a/Bootloaders/CDC/BootloaderCDC.c b/Bootloaders/CDC/BootloaderCDC.c new file mode 100644 index 000000000..aa17bc15b --- /dev/null +++ b/Bootloaders/CDC/BootloaderCDC.c @@ -0,0 +1,673 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Main source file for the CDC class bootloader. This file contains the complete bootloader logic. + */ + +#define INCLUDE_FROM_BOOTLOADERCDC_C +#include "BootloaderCDC.h" + +/** Contains the current baud rate and other settings of the first virtual serial port. This must be retained as some + * operating systems will not open the port unless the settings can be set successfully. + */ +static CDC_LineEncoding_t LineEncoding = { .BaudRateBPS = 0, + .CharFormat = CDC_LINEENCODING_OneStopBit, + .ParityType = CDC_PARITY_None, + .DataBits = 8 }; + +/** Current address counter. This stores the current address of the FLASH or EEPROM as set by the host, + * and is used when reading or writing to the AVRs memory (either FLASH or EEPROM depending on the issued + * command.) + */ +static uint32_t CurrAddress; + +/** Flag to indicate if the bootloader should be running, or should exit and allow the application code to run + * via a watchdog reset. When cleared the bootloader will exit, starting the watchdog and entering an infinite + * loop until the AVR restarts and the application runs. + */ +static bool RunBootloader = true; + +/** Magic lock for forced application start. If the HWBE fuse is programmed and BOOTRST is unprogrammed, the bootloader + * will start if the /HWB line of the AVR is held low and the system is reset. However, if the /HWB line is still held + * low when the application attempts to start via a watchdog reset, the bootloader will re-start. If set to the value + * \ref MAGIC_BOOT_KEY the special init function \ref Application_Jump_Check() will force the application to start. + */ +uint16_t MagicBootKey ATTR_NO_INIT; + + +/** Special startup routine to check if the bootloader was started via a watchdog reset, and if the magic application + * start key has been loaded into \ref MagicBootKey. If the bootloader started via the watchdog and the key is valid, + * this will force the user application to start via a software jump. + */ +void Application_Jump_Check(void) +{ + bool JumpToApplication = false; + + #if (BOARD == BOARD_LEONARDO) + /* Enable pull-up on the IO13 pin so we can use it to select the mode */ + PORTC |= (1 << 7); + Delay_MS(10); + + /* If IO13 is not jumpered to ground, start the user application instead */ + JumpToApplication = ((PINC & (1 << 7)) != 0); + + /* Disable pull-up after the check has completed */ + PORTC &= ~(1 << 7); + #elif ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1)) + /* Disable JTAG debugging */ + JTAG_DISABLE(); + + /* Enable pull-up on the JTAG TCK pin so we can use it to select the mode */ + PORTF |= (1 << 4); + Delay_MS(10); + + /* If the TCK pin is not jumpered to ground, start the user application instead */ + JumpToApplication = ((PINF & (1 << 4)) != 0); + + /* Re-enable JTAG debugging */ + JTAG_ENABLE(); + #else + /* Check if the device's BOOTRST fuse is set */ + if (boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS) & FUSE_BOOTRST) + { + /* If the reset source was not an external reset or the key is correct, clear it and jump to the application */ + if (!(MCUSR & (1 << EXTRF)) || (MagicBootKey == MAGIC_BOOT_KEY)) + JumpToApplication = true; + + /* Clear reset source */ + MCUSR &= ~(1 << EXTRF); + } + else + { + /* If the reset source was the bootloader and the key is correct, clear it and jump to the application; + * this can happen in the HWBE fuse is set, and the HBE pin is low during the watchdog reset */ + if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY)) + JumpToApplication = true; + + /* Clear reset source */ + MCUSR &= ~(1 << WDRF); + } + #endif + + /* Don't run the user application if the reset vector is blank (no app loaded) */ + bool ApplicationValid = (pgm_read_word_near(0) != 0xFFFF); + + /* If a request has been made to jump to the user application, honor it */ + if (JumpToApplication && ApplicationValid) + { + /* Turn off the watchdog */ + MCUSR &= ~(1 << WDRF); + wdt_disable(); + + /* Clear the boot key and jump to the user application */ + MagicBootKey = 0; + + // cppcheck-suppress constStatement + ((void (*)(void))0x0000)(); + } +} + +/** Main program entry point. This routine configures the hardware required by the bootloader, then continuously + * runs the bootloader processing routine until instructed to soft-exit, or hard-reset via the watchdog to start + * the loaded application code. + */ +int main(void) +{ + /* Setup hardware required for the bootloader */ + SetupHardware(); + + /* Turn on first LED on the board to indicate that the bootloader has started */ + LEDs_SetAllLEDs(LEDS_LED1); + + /* Enable global interrupts so that the USB stack can function */ + GlobalInterruptEnable(); + + while (RunBootloader) + { + CDC_Task(); + USB_USBTask(); + } + + /* Wait a short time to end all USB transactions and then disconnect */ + _delay_us(1000); + + /* Disconnect from the host - USB interface will be reset later along with the AVR */ + USB_Detach(); + + /* Unlock the forced application start mode of the bootloader if it is restarted */ + MagicBootKey = MAGIC_BOOT_KEY; + + /* Enable the watchdog and force a timeout to reset the AVR */ + wdt_enable(WDTO_250MS); + + for (;;); +} + +/** Configures all hardware required for the bootloader. */ +static void SetupHardware(void) +{ + /* Disable watchdog if enabled by bootloader/fuses */ + MCUSR &= ~(1 << WDRF); + wdt_disable(); + + /* Disable clock division */ + clock_prescale_set(clock_div_1); + + /* Relocate the interrupt vector table to the bootloader section */ + MCUCR = (1 << IVCE); + MCUCR = (1 << IVSEL); + + /* Initialize the USB and other board hardware drivers */ + USB_Init(); + LEDs_Init(); + + /* Bootloader active LED toggle timer initialization */ + TIMSK1 = (1 << TOIE1); + TCCR1B = ((1 << CS11) | (1 << CS10)); +} + +/** ISR to periodically toggle the LEDs on the board to indicate that the bootloader is active. */ +ISR(TIMER1_OVF_vect, ISR_BLOCK) +{ + LEDs_ToggleLEDs(LEDS_LED1 | LEDS_LED2); +} + +/** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready + * to relay data to and from the attached USB host. + */ +void EVENT_USB_Device_ConfigurationChanged(void) +{ + /* Setup CDC Notification, Rx and Tx Endpoints */ + Endpoint_ConfigureEndpoint(CDC_NOTIFICATION_EPADDR, EP_TYPE_INTERRUPT, + CDC_NOTIFICATION_EPSIZE, 1); + + Endpoint_ConfigureEndpoint(CDC_TX_EPADDR, EP_TYPE_BULK, CDC_TXRX_EPSIZE, 1); + + Endpoint_ConfigureEndpoint(CDC_RX_EPADDR, EP_TYPE_BULK, CDC_TXRX_EPSIZE, 1); +} + +/** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to + * the device from the USB host before passing along unhandled control requests to the library for processing + * internally. + */ +void EVENT_USB_Device_ControlRequest(void) +{ + /* Ignore any requests that aren't directed to the CDC interface */ + if ((USB_ControlRequest.bmRequestType & (CONTROL_REQTYPE_TYPE | CONTROL_REQTYPE_RECIPIENT)) != + (REQTYPE_CLASS | REQREC_INTERFACE)) + { + return; + } + + /* Activity - toggle indicator LEDs */ + LEDs_ToggleLEDs(LEDS_LED1 | LEDS_LED2); + + /* Process CDC specific control requests */ + switch (USB_ControlRequest.bRequest) + { + case CDC_REQ_GetLineEncoding: + if (USB_ControlRequest.bmRequestType == (REQDIR_DEVICETOHOST | REQTYPE_CLASS | REQREC_INTERFACE)) + { + Endpoint_ClearSETUP(); + + /* Write the line coding data to the control endpoint */ + Endpoint_Write_Control_Stream_LE(&LineEncoding, sizeof(CDC_LineEncoding_t)); + Endpoint_ClearOUT(); + } + + break; + case CDC_REQ_SetLineEncoding: + if (USB_ControlRequest.bmRequestType == (REQDIR_HOSTTODEVICE | REQTYPE_CLASS | REQREC_INTERFACE)) + { + Endpoint_ClearSETUP(); + + /* Read the line coding data in from the host into the global struct */ + Endpoint_Read_Control_Stream_LE(&LineEncoding, sizeof(CDC_LineEncoding_t)); + Endpoint_ClearIN(); + } + + break; + case CDC_REQ_SetControlLineState: + if (USB_ControlRequest.bmRequestType == (REQDIR_HOSTTODEVICE | REQTYPE_CLASS | REQREC_INTERFACE)) + { + Endpoint_ClearSETUP(); + Endpoint_ClearStatusStage(); + } + + break; + } +} + +#if !defined(NO_BLOCK_SUPPORT) +/** Reads or writes a block of EEPROM or FLASH memory to or from the appropriate CDC data endpoint, depending + * on the AVR109 protocol command issued. + * + * \param[in] Command Single character AVR109 protocol command indicating what memory operation to perform + */ +static void ReadWriteMemoryBlock(const uint8_t Command) +{ + uint16_t BlockSize; + char MemoryType; + + uint8_t HighByte = 0; + uint8_t LowByte = 0; + + BlockSize = (FetchNextCommandByte() << 8); + BlockSize |= FetchNextCommandByte(); + + MemoryType = FetchNextCommandByte(); + + if ((MemoryType != MEMORY_TYPE_FLASH) && (MemoryType != MEMORY_TYPE_EEPROM)) + { + /* Send error byte back to the host */ + WriteNextResponseByte('?'); + + return; + } + + /* Check if command is to read a memory block */ + if (Command == AVR109_COMMAND_BlockRead) + { + /* Re-enable RWW section */ + boot_rww_enable(); + + while (BlockSize--) + { + if (MemoryType == MEMORY_TYPE_FLASH) + { + /* Read the next FLASH byte from the current FLASH page */ + #if (FLASHEND > 0xFFFF) + WriteNextResponseByte(pgm_read_byte_far(CurrAddress | HighByte)); + #else + WriteNextResponseByte(pgm_read_byte(CurrAddress | HighByte)); + #endif + + /* If both bytes in current word have been read, increment the address counter */ + if (HighByte) + CurrAddress += 2; + + HighByte = !HighByte; + } + else + { + /* Read the next EEPROM byte into the endpoint */ + WriteNextResponseByte(eeprom_read_byte((uint8_t*)(intptr_t)(CurrAddress >> 1))); + + /* Increment the address counter after use */ + CurrAddress += 2; + } + } + } + else + { + uint32_t PageStartAddress = CurrAddress; + + if (MemoryType == MEMORY_TYPE_FLASH) + { + boot_page_erase(PageStartAddress); + boot_spm_busy_wait(); + } + + while (BlockSize--) + { + if (MemoryType == MEMORY_TYPE_FLASH) + { + /* If both bytes in current word have been written, increment the address counter */ + if (HighByte) + { + /* Write the next FLASH word to the current FLASH page */ + boot_page_fill(CurrAddress, ((FetchNextCommandByte() << 8) | LowByte)); + + /* Increment the address counter after use */ + CurrAddress += 2; + } + else + { + LowByte = FetchNextCommandByte(); + } + + HighByte = !HighByte; + } + else + { + /* Write the next EEPROM byte from the endpoint */ + eeprom_update_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); + + /* Increment the address counter after use */ + CurrAddress += 2; + } + } + + /* If in FLASH programming mode, commit the page after writing */ + if (MemoryType == MEMORY_TYPE_FLASH) + { + /* Commit the flash page to memory */ + boot_page_write(PageStartAddress); + + /* Wait until write operation has completed */ + boot_spm_busy_wait(); + } + + /* Send response byte back to the host */ + WriteNextResponseByte('\r'); + } +} +#endif + +/** Retrieves the next byte from the host in the CDC data OUT endpoint, and clears the endpoint bank if needed + * to allow reception of the next data packet from the host. + * + * \return Next received byte from the host in the CDC data OUT endpoint + */ +static uint8_t FetchNextCommandByte(void) +{ + /* Select the OUT endpoint so that the next data byte can be read */ + Endpoint_SelectEndpoint(CDC_RX_EPADDR); + + /* If OUT endpoint empty, clear it and wait for the next packet from the host */ + while (!(Endpoint_IsReadWriteAllowed())) + { + Endpoint_ClearOUT(); + + while (!(Endpoint_IsOUTReceived())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return 0; + } + } + + /* Fetch the next byte from the OUT endpoint */ + return Endpoint_Read_8(); +} + +/** Writes the next response byte to the CDC data IN endpoint, and sends the endpoint back if needed to free up the + * bank when full ready for the next byte in the packet to the host. + * + * \param[in] Response Next response byte to send to the host + */ +static void WriteNextResponseByte(const uint8_t Response) +{ + /* Select the IN endpoint so that the next data byte can be written */ + Endpoint_SelectEndpoint(CDC_TX_EPADDR); + + /* If IN endpoint full, clear it and wait until ready for the next packet to the host */ + if (!(Endpoint_IsReadWriteAllowed())) + { + Endpoint_ClearIN(); + + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + } + + /* Write the next byte to the IN endpoint */ + Endpoint_Write_8(Response); +} + +/** Task to read in AVR109 commands from the CDC data OUT endpoint, process them, perform the required actions + * and send the appropriate response back to the host. + */ +static void CDC_Task(void) +{ + /* Select the OUT endpoint */ + Endpoint_SelectEndpoint(CDC_RX_EPADDR); + + /* Check if endpoint has a command in it sent from the host */ + if (!(Endpoint_IsOUTReceived())) + return; + + /* Read in the bootloader command (first byte sent from host) */ + uint8_t Command = FetchNextCommandByte(); + + if (Command == AVR109_COMMAND_ExitBootloader) + { + RunBootloader = false; + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if ((Command == AVR109_COMMAND_SetLED) || (Command == AVR109_COMMAND_ClearLED) || + (Command == AVR109_COMMAND_SelectDeviceType)) + { + FetchNextCommandByte(); + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if ((Command == AVR109_COMMAND_EnterProgrammingMode) || (Command == AVR109_COMMAND_LeaveProgrammingMode)) + { + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if (Command == AVR109_COMMAND_ReadPartCode) + { + /* Return ATMEGA128 part code - this is only to allow AVRProg to use the bootloader */ + WriteNextResponseByte(0x44); + WriteNextResponseByte(0x00); + } + else if (Command == AVR109_COMMAND_ReadAutoAddressIncrement) + { + /* Indicate auto-address increment is supported */ + WriteNextResponseByte('Y'); + } + else if (Command == AVR109_COMMAND_SetCurrentAddress) + { + /* Set the current address to that given by the host (translate 16-bit word address to byte address) */ + CurrAddress = (FetchNextCommandByte() << 9); + CurrAddress |= (FetchNextCommandByte() << 1); + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if (Command == AVR109_COMMAND_ReadBootloaderInterface) + { + /* Indicate serial programmer back to the host */ + WriteNextResponseByte('S'); + } + else if (Command == AVR109_COMMAND_ReadBootloaderIdentifier) + { + /* Write the 7-byte software identifier to the endpoint */ + for (uint8_t CurrByte = 0; CurrByte < 7; CurrByte++) + WriteNextResponseByte(SOFTWARE_IDENTIFIER[CurrByte]); + } + else if (Command == AVR109_COMMAND_ReadBootloaderSWVersion) + { + WriteNextResponseByte('0' + BOOTLOADER_VERSION_MAJOR); + WriteNextResponseByte('0' + BOOTLOADER_VERSION_MINOR); + } + else if (Command == AVR109_COMMAND_ReadSignature) + { + WriteNextResponseByte(AVR_SIGNATURE_3); + WriteNextResponseByte(AVR_SIGNATURE_2); + WriteNextResponseByte(AVR_SIGNATURE_1); + } + else if (Command == AVR109_COMMAND_EraseFLASH) + { + /* Clear the application section of flash */ + for (uint32_t CurrFlashAddress = 0; CurrFlashAddress < (uint32_t)BOOT_START_ADDR; CurrFlashAddress += SPM_PAGESIZE) + { + boot_page_erase(CurrFlashAddress); + boot_spm_busy_wait(); + boot_page_write(CurrFlashAddress); + boot_spm_busy_wait(); + } + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + #if !defined(NO_LOCK_BYTE_WRITE_SUPPORT) + else if (Command == AVR109_COMMAND_WriteLockbits) + { + /* Set the lock bits to those given by the host */ + boot_lock_bits_set(FetchNextCommandByte()); + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + #endif + else if (Command == AVR109_COMMAND_ReadLockbits) + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOCK_BITS)); + } + else if (Command == AVR109_COMMAND_ReadLowFuses) + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOW_FUSE_BITS)); + } + else if (Command == AVR109_COMMAND_ReadHighFuses) + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS)); + } + else if (Command == AVR109_COMMAND_ReadExtendedFuses) + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_EXTENDED_FUSE_BITS)); + } + #if !defined(NO_BLOCK_SUPPORT) + else if (Command == AVR109_COMMAND_GetBlockWriteSupport) + { + WriteNextResponseByte('Y'); + + /* Send block size to the host */ + WriteNextResponseByte(SPM_PAGESIZE >> 8); + WriteNextResponseByte(SPM_PAGESIZE & 0xFF); + } + else if ((Command == AVR109_COMMAND_BlockWrite) || (Command == AVR109_COMMAND_BlockRead)) + { + /* Delegate the block write/read to a separate function for clarity */ + ReadWriteMemoryBlock(Command); + } + #endif + #if !defined(NO_FLASH_BYTE_SUPPORT) + else if (Command == AVR109_COMMAND_FillFlashPageWordHigh) + { + /* Write the high byte to the current flash page */ + boot_page_fill(CurrAddress, FetchNextCommandByte()); + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if (Command == AVR109_COMMAND_FillFlashPageWordLow) + { + /* Write the low byte to the current flash page */ + boot_page_fill(CurrAddress | 0x01, FetchNextCommandByte()); + + /* Increment the address */ + CurrAddress += 2; + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if (Command == AVR109_COMMAND_WriteFlashPage) + { + /* Commit the flash page to memory */ + boot_page_write(CurrAddress); + + /* Wait until write operation has completed */ + boot_spm_busy_wait(); + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if (Command == AVR109_COMMAND_ReadFLASHWord) + { + #if (FLASHEND > 0xFFFF) + uint16_t ProgramWord = pgm_read_word_far(CurrAddress); + #else + uint16_t ProgramWord = pgm_read_word(CurrAddress); + #endif + + WriteNextResponseByte(ProgramWord >> 8); + WriteNextResponseByte(ProgramWord & 0xFF); + } + #endif + #if !defined(NO_EEPROM_BYTE_SUPPORT) + else if (Command == AVR109_COMMAND_WriteEEPROM) + { + /* Read the byte from the endpoint and write it to the EEPROM */ + eeprom_update_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); + + /* Increment the address after use */ + CurrAddress += 2; + + /* Send confirmation byte back to the host */ + WriteNextResponseByte('\r'); + } + else if (Command == AVR109_COMMAND_ReadEEPROM) + { + /* Read the EEPROM byte and write it to the endpoint */ + WriteNextResponseByte(eeprom_read_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)))); + + /* Increment the address after use */ + CurrAddress += 2; + } + #endif + else if (Command != AVR109_COMMAND_Sync) + { + /* Unknown (non-sync) command, return fail code */ + WriteNextResponseByte('?'); + } + + /* Select the IN endpoint */ + Endpoint_SelectEndpoint(CDC_TX_EPADDR); + + /* Remember if the endpoint is completely full before clearing it */ + bool IsEndpointFull = !(Endpoint_IsReadWriteAllowed()); + + /* Send the endpoint data to the host */ + Endpoint_ClearIN(); + + /* If a full endpoint's worth of data was sent, we need to send an empty packet afterwards to signal end of transfer */ + if (IsEndpointFull) + { + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + + Endpoint_ClearIN(); + } + + /* Wait until the data has been sent to the host */ + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + + /* Select the OUT endpoint */ + Endpoint_SelectEndpoint(CDC_RX_EPADDR); + + /* Acknowledge the command from the host */ + Endpoint_ClearOUT(); +} diff --git a/Bootloaders/CDC/BootloaderCDC.h b/Bootloaders/CDC/BootloaderCDC.h new file mode 100644 index 000000000..b6543aa73 --- /dev/null +++ b/Bootloaders/CDC/BootloaderCDC.h @@ -0,0 +1,144 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Header file for BootloaderCDC.c. + */ + +#ifndef _CDC_H_ +#define _CDC_H_ + + /* Includes: */ + #include + #include + #include + #include + #include + #include + #include + + #include "Descriptors.h" + #include "BootloaderAPI.h" + #include "Config/AppConfig.h" + + #include + #include + #include + + /* Preprocessor Checks: */ + #if !defined(__OPTIMIZE_SIZE__) + #error This bootloader requires that it be optimized for size, not speed, to fit into the target device. Change optimization settings and try again. + #endif + + /* Macros: */ + /** Version major of the CDC bootloader. */ + #define BOOTLOADER_VERSION_MAJOR 0x01 + + /** Version minor of the CDC bootloader. */ + #define BOOTLOADER_VERSION_MINOR 0x00 + + /** Hardware version major of the CDC bootloader. */ + #define BOOTLOADER_HWVERSION_MAJOR 0x01 + + /** Hardware version minor of the CDC bootloader. */ + #define BOOTLOADER_HWVERSION_MINOR 0x00 + + /** Eight character bootloader firmware identifier reported to the host when requested. */ + #define SOFTWARE_IDENTIFIER "LUFACDC" + + /** Magic bootloader key to unlock forced application start mode. */ + #define MAGIC_BOOT_KEY 0xDC42 + + /* Enums: */ + /** Possible memory types that can be addressed via the bootloader. */ + enum AVR109_Memories + { + MEMORY_TYPE_FLASH = 'F', + MEMORY_TYPE_EEPROM = 'E', + }; + + /** Possible commands that can be issued to the bootloader. */ + enum AVR109_Commands + { + AVR109_COMMAND_Sync = 27, + AVR109_COMMAND_ReadEEPROM = 'd', + AVR109_COMMAND_WriteEEPROM = 'D', + AVR109_COMMAND_ReadFLASHWord = 'R', + AVR109_COMMAND_WriteFlashPage = 'm', + AVR109_COMMAND_FillFlashPageWordLow = 'c', + AVR109_COMMAND_FillFlashPageWordHigh = 'C', + AVR109_COMMAND_GetBlockWriteSupport = 'b', + AVR109_COMMAND_BlockWrite = 'B', + AVR109_COMMAND_BlockRead = 'g', + AVR109_COMMAND_ReadExtendedFuses = 'Q', + AVR109_COMMAND_ReadHighFuses = 'N', + AVR109_COMMAND_ReadLowFuses = 'F', + AVR109_COMMAND_ReadLockbits = 'r', + AVR109_COMMAND_WriteLockbits = 'l', + AVR109_COMMAND_EraseFLASH = 'e', + AVR109_COMMAND_ReadSignature = 's', + AVR109_COMMAND_ReadBootloaderSWVersion = 'V', + AVR109_COMMAND_ReadBootloaderHWVersion = 'v', + AVR109_COMMAND_ReadBootloaderIdentifier = 'S', + AVR109_COMMAND_ReadBootloaderInterface = 'p', + AVR109_COMMAND_SetCurrentAddress = 'A', + AVR109_COMMAND_ReadAutoAddressIncrement = 'a', + AVR109_COMMAND_ReadPartCode = 't', + AVR109_COMMAND_EnterProgrammingMode = 'P', + AVR109_COMMAND_LeaveProgrammingMode = 'L', + AVR109_COMMAND_SelectDeviceType = 'T', + AVR109_COMMAND_SetLED = 'x', + AVR109_COMMAND_ClearLED = 'y', + AVR109_COMMAND_ExitBootloader = 'E', + }; + + /* Type Defines: */ + /** Type define for a non-returning pointer to the start of the loaded application in flash memory. */ + typedef void (*AppPtr_t)(void) ATTR_NO_RETURN; + + /* Function Prototypes: */ + static void CDC_Task(void); + static void SetupHardware(void); + + void Application_Jump_Check(void) ATTR_INIT_SECTION(3); + + void EVENT_USB_Device_ConfigurationChanged(void); + + #if defined(INCLUDE_FROM_BOOTLOADERCDC_C) || defined(__DOXYGEN__) + #if !defined(NO_BLOCK_SUPPORT) + static void ReadWriteMemoryBlock(const uint8_t Command); + #endif + static uint8_t FetchNextCommandByte(void); + static void WriteNextResponseByte(const uint8_t Response); + #endif + +#endif + diff --git a/Bootloaders/CDC/BootloaderCDC.txt b/Bootloaders/CDC/BootloaderCDC.txt new file mode 100644 index 000000000..f8c349cde --- /dev/null +++ b/Bootloaders/CDC/BootloaderCDC.txt @@ -0,0 +1,242 @@ +/** \file + * + * This file contains special DoxyGen information for the generation of the main page and other special + * documentation pages. It is not a project source file. + */ + +/** \mainpage CDC Class USB AVR Bootloader + * + * \section Sec_Compat Demo Compatibility: + * + * The following list indicates what microcontrollers are compatible with this demo. + * + * \li Series 7 USB AVRs (AT90USBxxx7) + * \li Series 6 USB AVRs (AT90USBxxx6) + * \li Series 4 USB AVRs (ATMEGAxxU4) + * \li Series 2 USB AVRs (AT90USBxx2, ATMEGAxxU2) + * + * \section Sec_Info USB Information: + * + * The following table gives a rundown of the USB utilization of this demo. + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
USB Mode:Device
USB Class:Communications Device Class (CDC)
USB Subclass:Abstract Control Model (ACM)
Relevant Standards:USBIF CDC Class Standard
Supported USB Speeds:Full Speed Mode
+ * + * \section Sec_Description Project Description: + * + * This bootloader enumerates to the host as a CDC Class device (virtual serial port), allowing for AVR109 + * protocol compatible programming software to load firmware onto the AVR. + * + * Out of the box this bootloader builds for the AT90USB1287 with an 8KB bootloader section size, and will fit + * into 4KB of bootloader space. If you wish to alter this size and/or change the AVR model, you will need to + * edit the MCU, FLASH_SIZE_KB and BOOT_SECTION_SIZE_KB values in the accompanying makefile. + * + * When the bootloader is running, the board's LED(s) will flash at regular intervals to distinguish the + * bootloader from the normal user application. + * + * \warning THIS BOOTLOADER IS NOT SECURE. Malicious entities can recover written data, even if the device + * lockbits are set. + * + * \section Sec_Running Running the Bootloader + * + * On the USB AVR8 devices, setting the \c HWBE device fuse will cause the bootloader to run if the \c HWB pin of + * the AVR is grounded when the device is reset. + * + * The are two behaviours of this bootloader, depending on the device's fuses: + * + * If the device's BOOTRST fuse is set, the bootloader will run any time the system is reset from + * the external reset pin, unless no valid user application has been loaded. To initiate the bootloader, the + * device's external reset pin should be grounded momentarily. + * + * If the device's BOOTRST fuse is not set, the bootloader will run only if initiated via a software + * jump, or if the \c HWB pin was low during the last device reset (if the \c HWBE fuse is set). + * + * For board specific exceptions to the above, see below. + * + * \subsection SSec_XPLAIN Atmel Xplain Board + * Ground the USB AVR JTAG's \c TCK pin to ground when powering on the board to start the bootloader. This assumes the + * \c HWBE fuse is cleared and the \c BOOTRST fuse is set as the HWBE pin is not user accessible on this board. + * + * \subsection SSec_Leonardo Arduino Leonardo Board + * Ground \c IO13 when powering the board to start the bootloader. This assumes the \c HWBE fuse is cleared and the + * \c BOOTRST fuse is set as the HWBE pin is not user accessible on this board. + * + * \section Sec_Installation Driver Installation + * + * After running this bootloader for the first time on a new computer, you will need to supply the .INF + * file located in this bootloader project's directory as the device's driver when running under Windows. + * This will enable Windows to use its inbuilt CDC drivers, negating the need for custom drivers for the + * device. Other Operating Systems should automatically use their own inbuilt CDC-ACM drivers. + * + * \section Sec_HostApp Host Controller Application + * + * This bootloader is compatible with the open source application AVRDUDE, Atmel's AVRPROG, or other + * applications implementing the AVR109 protocol, which is documented on the Atmel website as an application + * note. + * + * \subsection SSec_AVRDude AVRDUDE (Windows, Mac, Linux) + * + * AVRDude is a free, cross-platform and open source command line programmer for Atmel and third party AVR + * programmers. It is available on the the Windows platform as part of the "WinAVR" package, or on other systems + * either from a build from the official source code, or in many distributions as a precompiled binary package. + * + * To load a new HEX file with AVRDude, specify "AVR109" as the programmer, with the allocated COM port. On Windows + * platforms this will be a COMx port name: + * \code + * avrdude -c AVR109 -p at90usb1287 -P COM0 -U flash:w:Mouse.hex + * \endcode + * + * On Linux systems, this will typically be a /dev/ttyACMx port name: + * \code + * avrdude -c AVR109 -p at90usb1287 -P /dev/ttyACM0 -U flash:w:Mouse.hex + * \endcode + * + * Refer to the AVRDude project documentation for additional usage instructions. + * + * \section Sec_API User Application API + * + * Several user application functions for FLASH and other special memory area manipulations are exposed by the bootloader, + * allowing the user application to call into the bootloader at runtime to read and write FLASH data. + * + * By default, the bootloader API jump table is located 32 bytes from the end of the device's FLASH memory, and follows the + * following layout: + * + * \code + * #define BOOTLOADER_API_TABLE_SIZE 32 + * #define BOOTLOADER_API_TABLE_START ((FLASHEND + 1UL) - BOOTLOADER_API_TABLE_SIZE) + * #define BOOTLOADER_API_CALL(Index) (void*)((BOOTLOADER_API_TABLE_START + (Index * 2)) / 2) + * + * void (*BootloaderAPI_ErasePage)(uint32_t Address) = BOOTLOADER_API_CALL(0); + * void (*BootloaderAPI_WritePage)(uint32_t Address) = BOOTLOADER_API_CALL(1); + * void (*BootloaderAPI_FillWord)(uint32_t Address, uint16_t Word) = BOOTLOADER_API_CALL(2); + * uint8_t (*BootloaderAPI_ReadSignature)(uint16_t Address) = BOOTLOADER_API_CALL(3); + * uint8_t (*BootloaderAPI_ReadFuse)(uint16_t Address) = BOOTLOADER_API_CALL(4); + * uint8_t (*BootloaderAPI_ReadLock)(void) = BOOTLOADER_API_CALL(5); + * void (*BootloaderAPI_WriteLock)(uint8_t LockBits) = BOOTLOADER_API_CALL(6); + * + * #define BOOTLOADER_MAGIC_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 2)) + * #define BOOTLOADER_MAGIC_SIGNATURE 0xDCFB + * + * #define BOOTLOADER_CLASS_SIGNATURE_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 4)) + * #define BOOTLOADER_CDC_SIGNATURE 0xDF00 + * + * #define BOOTLOADER_ADDRESS_START (BOOTLOADER_API_TABLE_START + (BOOTLOADER_API_TABLE_SIZE - 8)) + * #define BOOTLOADER_ADDRESS_LENGTH 4 + * \endcode + * + * From the application the API support of the bootloader can be detected by reading the FLASH memory bytes located at address + * \c BOOTLOADER_MAGIC_SIGNATURE_START and comparing them to the value \c BOOTLOADER_MAGIC_SIGNATURE. The class of bootloader + * can be determined by reading the FLASH memory bytes located at address \c BOOTLOADER_CLASS_SIGNATURE_START and comparing them + * to the value \c BOOTLOADER_CDC_SIGNATURE. The start address of the bootloader can be retrieved by reading the bytes of FLASH + * memory starting from address \c BOOTLOADER_ADDRESS_START. + * + * \subsection SSec_API_MemLayout Device Memory Map + * The following illustration indicates the final memory map of the device when loaded with the bootloader. + * + * \verbatim + * +----------------------------+ 0x0000 + * | | + * | | + * | | + * | | + * | | + * | | + * | | + * | | + * | User Application | + * | | + * | | + * | | + * | | + * | | + * | | + * | | + * +----------------------------+ FLASHEND - BOOT_SECTION_SIZE + * | | + * | Bootloader Application | + * | (Not User App. Accessible) | + * | | + * +----------------------------+ FLASHEND - 96 + * | API Table Trampolines | + * | (Not User App. Accessible) | + * +----------------------------+ FLASHEND - 32 + * | Bootloader API Table | + * | (User App. Accessible) | + * +----------------------------+ FLASHEND - 8 + * | Bootloader ID Constants | + * | (User App. Accessible) | + * +----------------------------+ FLASHEND + * \endverbatim + * + * \section Sec_KnownIssues Known Issues: + * + * \par On Linux machines, the CDC bootloader is unstable or inaccessible. + * A change to the \c ModemManager module in many Linux distributions causes + * this module to try to take control over inserted CDC devices, corrupting the + * datastream. A UDEV rule is required to prevent this. + * See here for resolution steps. + * If the issue still persists then uninstall modemmanager by executing sudo apt-get remove modemmanager, or + * the equivalent using your chosen distribution's package manager. + * + * \par On Linux machines, the CDC bootloader is inaccessible. + * On many Linux systems, non-root users do not have automatic access to newly + * inserted CDC devices. Root privileges or a UDEV rule is required to gain + * access. + * See here for resolution steps. + * + * \section Sec_Options Project Options + * + * The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value. + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
Define Name:Location:Description:
NO_BLOCK_SUPPORTAppConfig.hDefine to disable memory block read/write support in the bootloader, requiring all reads and writes to be made + * using the byte-level commands.
NO_EEPROM_BYTE_SUPPORTAppConfig.hDefine to disable EEPROM memory byte read/write support in the bootloader, requiring all EEPROM reads and writes + * to be made using the block-level commands.
NO_FLASH_BYTE_SUPPORTAppConfig.hDefine to disable FLASH memory byte read/write support in the bootloader, requiring all FLASH reads and writes + * to be made using the block-level commands.
NO_LOCK_BYTE_WRITE_SUPPORTAppConfig.hDefine to disable lock byte write support in the bootloader, preventing the lock bits from being set programmatically.
+ */ + diff --git a/Bootloaders/CDC/Config/AppConfig.h b/Bootloaders/CDC/Config/AppConfig.h new file mode 100644 index 000000000..22972b72f --- /dev/null +++ b/Bootloaders/CDC/Config/AppConfig.h @@ -0,0 +1,50 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * \brief Application Configuration Header File + * + * This is a header file which is be used to configure LUFA's + * compile time options, as an alternative to the compile time + * constants supplied through a makefile. + * + * For information on what each token does, refer to the + * \ref Sec_Options section of the application documentation. + */ + +#ifndef _APP_CONFIG_H_ +#define _APP_CONFIG_H_ + +// #define NO_BLOCK_SUPPORT +// #define NO_EEPROM_BYTE_SUPPORT +// #define NO_FLASH_BYTE_SUPPORT +// #define NO_LOCK_BYTE_WRITE_SUPPORT + +#endif diff --git a/Bootloaders/CDC/Config/LUFAConfig.h b/Bootloaders/CDC/Config/LUFAConfig.h new file mode 100644 index 000000000..5aa0e765b --- /dev/null +++ b/Bootloaders/CDC/Config/LUFAConfig.h @@ -0,0 +1,93 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * \brief LUFA Library Configuration Header File + * + * This header file is used to configure LUFA's compile time options, + * as an alternative to the compile time constants supplied through + * a makefile. + * + * For information on what each token does, refer to the LUFA + * manual section "Summary of Compile Tokens". + */ + +#ifndef _LUFA_CONFIG_H_ +#define _LUFA_CONFIG_H_ + + #if (ARCH == ARCH_AVR8) + + /* Non-USB Related Configuration Tokens: */ +// #define DISABLE_TERMINAL_CODES + + /* USB Class Driver Related Tokens: */ +// #define HID_HOST_BOOT_PROTOCOL_ONLY +// #define HID_STATETABLE_STACK_DEPTH {Insert Value Here} +// #define HID_USAGE_STACK_DEPTH {Insert Value Here} +// #define HID_MAX_COLLECTIONS {Insert Value Here} +// #define HID_MAX_REPORTITEMS {Insert Value Here} +// #define HID_MAX_REPORT_IDS {Insert Value Here} +// #define NO_CLASS_DRIVER_AUTOFLUSH + + /* General USB Driver Related Tokens: */ + #define ORDERED_EP_CONFIG + #define USE_STATIC_OPTIONS (USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL) + #define USB_DEVICE_ONLY +// #define USB_HOST_ONLY +// #define USB_STREAM_TIMEOUT_MS {Insert Value Here} +// #define NO_LIMITED_CONTROLLER_CONNECT + #define NO_SOF_EVENTS + + /* USB Device Mode Driver Related Tokens: */ + #define USE_RAM_DESCRIPTORS +// #define USE_FLASH_DESCRIPTORS +// #define USE_EEPROM_DESCRIPTORS + #define NO_INTERNAL_SERIAL + #define FIXED_CONTROL_ENDPOINT_SIZE 8 + #define DEVICE_STATE_AS_GPIOR 0 + #define FIXED_NUM_CONFIGURATIONS 1 +// #define CONTROL_ONLY_DEVICE +// #define INTERRUPT_CONTROL_ENDPOINT + #define NO_DEVICE_REMOTE_WAKEUP + #define NO_DEVICE_SELF_POWER + + /* USB Host Mode Driver Related Tokens: */ +// #define HOST_STATE_AS_GPIOR {Insert Value Here} +// #define USB_HOST_TIMEOUT_MS {Insert Value Here} +// #define HOST_DEVICE_SETTLE_DELAY_MS {Insert Value Here} +// #define NO_AUTO_VBUS_MANAGEMENT +// #define INVERTED_VBUS_ENABLE_LINE + + #else + + #error Unsupported architecture for this LUFA configuration file. + + #endif +#endif diff --git a/Bootloaders/CDC/Descriptors.c b/Bootloaders/CDC/Descriptors.c new file mode 100644 index 000000000..627657037 --- /dev/null +++ b/Bootloaders/CDC/Descriptors.c @@ -0,0 +1,244 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * USB Device Descriptors, for library use when in USB device mode. Descriptors are special + * computer-readable structures which the host requests upon device enumeration, to determine + * the device's capabilities and functions. + */ + +#include "Descriptors.h" + +/** Device descriptor structure. This descriptor, located in SRAM memory, describes the overall + * device characteristics, including the supported USB version, control endpoint size and the + * number of device configurations. The descriptor is read out by the USB host when the enumeration + * process begins. + */ +const USB_Descriptor_Device_t DeviceDescriptor = +{ + .Header = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device}, + + .USBSpecification = VERSION_BCD(1,1,0), + .Class = CDC_CSCP_CDCClass, + .SubClass = CDC_CSCP_NoSpecificSubclass, + .Protocol = CDC_CSCP_NoSpecificProtocol, + + .Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE, + + .VendorID = 0x03EB, + .ProductID = 0x204A, + .ReleaseNumber = VERSION_BCD(1,0,0), + + .ManufacturerStrIndex = STRING_ID_Manufacturer, + .ProductStrIndex = STRING_ID_Product, + .SerialNumStrIndex = NO_DESCRIPTOR, + + .NumberOfConfigurations = FIXED_NUM_CONFIGURATIONS +}; + +/** Configuration descriptor structure. This descriptor, located in SRAM memory, describes the usage + * of the device in one of its supported configurations, including information about any device interfaces + * and endpoints. The descriptor is read out by the USB host during the enumeration process when selecting + * a configuration so that the host may correctly communicate with the USB device. + */ +const USB_Descriptor_Configuration_t ConfigurationDescriptor = +{ + .Config = + { + .Header = {.Size = sizeof(USB_Descriptor_Configuration_Header_t), .Type = DTYPE_Configuration}, + + .TotalConfigurationSize = sizeof(USB_Descriptor_Configuration_t), + .TotalInterfaces = 2, + + .ConfigurationNumber = 1, + .ConfigurationStrIndex = NO_DESCRIPTOR, + + .ConfigAttributes = USB_CONFIG_ATTR_RESERVED, + + .MaxPowerConsumption = USB_CONFIG_POWER_MA(100) + }, + + .CDC_CCI_Interface = + { + .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface}, + + .InterfaceNumber = INTERFACE_ID_CDC_CCI, + .AlternateSetting = 0, + + .TotalEndpoints = 1, + + .Class = CDC_CSCP_CDCClass, + .SubClass = CDC_CSCP_ACMSubclass, + .Protocol = CDC_CSCP_ATCommandProtocol, + + .InterfaceStrIndex = NO_DESCRIPTOR + }, + + .CDC_Functional_Header = + { + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalHeader_t), .Type = DTYPE_CSInterface}, + .Subtype = 0x00, + + .CDCSpecification = VERSION_BCD(1,1,0), + }, + + .CDC_Functional_ACM = + { + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalACM_t), .Type = DTYPE_CSInterface}, + .Subtype = 0x02, + + .Capabilities = 0x02, + }, + + .CDC_Functional_Union = + { + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalUnion_t), .Type = DTYPE_CSInterface}, + .Subtype = 0x06, + + .MasterInterfaceNumber = INTERFACE_ID_CDC_CCI, + .SlaveInterfaceNumber = INTERFACE_ID_CDC_DCI, + }, + + .CDC_NotificationEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = CDC_NOTIFICATION_EPADDR, + .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = CDC_NOTIFICATION_EPSIZE, + .PollingIntervalMS = 0xFF + }, + + .CDC_DCI_Interface = + { + .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface}, + + .InterfaceNumber = INTERFACE_ID_CDC_DCI, + .AlternateSetting = 0, + + .TotalEndpoints = 2, + + .Class = CDC_CSCP_CDCDataClass, + .SubClass = CDC_CSCP_NoDataSubclass, + .Protocol = CDC_CSCP_NoDataProtocol, + + .InterfaceStrIndex = NO_DESCRIPTOR + }, + + .CDC_DataOutEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = CDC_RX_EPADDR, + .Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = CDC_TXRX_EPSIZE, + .PollingIntervalMS = 0x05 + }, + + .CDC_DataInEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = CDC_TX_EPADDR, + .Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = CDC_TXRX_EPSIZE, + .PollingIntervalMS = 0x05 + } +}; + +/** Language descriptor structure. This descriptor, located in SRAM memory, is returned when the host requests + * the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate + * via the language ID table available at USB.org what languages the device supports for its string descriptors. + */ +const USB_Descriptor_String_t LanguageString = USB_STRING_DESCRIPTOR_ARRAY(LANGUAGE_ID_ENG); + +/** Manufacturer descriptor string. This is a Unicode string containing the manufacturer's details in human readable + * form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device + * Descriptor. + */ +const USB_Descriptor_String_t ManufacturerString = USB_STRING_DESCRIPTOR(L"Dean Camera"); + +/** Product descriptor string. This is a Unicode string containing the product's details in human readable form, + * and is read out upon request by the host when the appropriate string ID is requested, listed in the Device + * Descriptor. + */ +const USB_Descriptor_String_t ProductString = USB_STRING_DESCRIPTOR(L"LUFA CDC"); + +/** This function is called by the library when in device mode, and must be overridden (see LUFA library "USB Descriptors" + * documentation) by the application code so that the address and size of a requested descriptor can be given + * to the USB library. When the device receives a Get Descriptor request on the control endpoint, this function + * is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the + * USB host. + */ +uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, + const uint16_t wIndex, + const void** const DescriptorAddress) +{ + const uint8_t DescriptorType = (wValue >> 8); + const uint8_t DescriptorNumber = (wValue & 0xFF); + + const void* Address = NULL; + uint16_t Size = NO_DESCRIPTOR; + + switch (DescriptorType) + { + case DTYPE_Device: + Address = &DeviceDescriptor; + Size = sizeof(USB_Descriptor_Device_t); + break; + case DTYPE_Configuration: + Address = &ConfigurationDescriptor; + Size = sizeof(USB_Descriptor_Configuration_t); + break; + case DTYPE_String: + if (DescriptorNumber == STRING_ID_Language) + { + Address = &LanguageString; + Size = LanguageString.Header.Size; + } + else if (DescriptorNumber == STRING_ID_Manufacturer) + { + Address = &ManufacturerString; + Size = ManufacturerString.Header.Size; + } + else if (DescriptorNumber == STRING_ID_Product) + { + Address = &ProductString; + Size = ProductString.Header.Size; + } + + break; + } + + *DescriptorAddress = Address; + return Size; +} + diff --git a/Bootloaders/CDC/Descriptors.h b/Bootloaders/CDC/Descriptors.h new file mode 100644 index 000000000..a6fbf5262 --- /dev/null +++ b/Bootloaders/CDC/Descriptors.h @@ -0,0 +1,158 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2017. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2017 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaims all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Header file for Descriptors.c. + */ + +#ifndef _DESCRIPTORS_H_ +#define _DESCRIPTORS_H_ + + /* Includes: */ + #include + + #include "Config/AppConfig.h" + + /* Macros: */ + #if defined(__AVR_AT90USB1287__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x97 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_AT90USB647__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x96 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_AT90USB1286__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x97 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_AT90USB646__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x96 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_ATmega32U4__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x95 + #define AVR_SIGNATURE_3 0x87 + #elif defined(__AVR_ATmega16U4__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x94 + #define AVR_SIGNATURE_3 0x88 + #elif defined(__AVR_ATmega32U2__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x95 + #define AVR_SIGNATURE_3 0x8A + #elif defined(__AVR_ATmega16U2__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x94 + #define AVR_SIGNATURE_3 0x89 + #elif defined(__AVR_AT90USB162__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x94 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_ATmega8U2__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x93 + #define AVR_SIGNATURE_3 0x89 + #elif defined(__AVR_AT90USB82__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x93 + #define AVR_SIGNATURE_3 0x82 + #else + #error The selected AVR part is not currently supported by this bootloader. + #endif + + /** Endpoint address for the CDC control interface event notification endpoint. */ + #define CDC_NOTIFICATION_EPADDR (ENDPOINT_DIR_IN | 2) + + /** Endpoint address for the CDC data interface TX (data IN) endpoint. */ + #define CDC_TX_EPADDR (ENDPOINT_DIR_IN | 3) + + /** Endpoint address for the CDC data interface RX (data OUT) endpoint. */ + #define CDC_RX_EPADDR (ENDPOINT_DIR_OUT | 4) + + /** Size of the CDC data interface TX and RX data endpoint banks, in bytes. */ + #define CDC_TXRX_EPSIZE 16 + + /** Size of the CDC control interface notification endpoint bank, in bytes. */ + #define CDC_NOTIFICATION_EPSIZE 8 + + /* Type Defines: */ + /** Type define for the device configuration descriptor structure. This must be defined in the + * application code, as the configuration descriptor contains several sub-descriptors which + * vary between devices, and which describe the device's usage to the host. + */ + typedef struct + { + USB_Descriptor_Configuration_Header_t Config; + + // CDC Control Interface + USB_Descriptor_Interface_t CDC_CCI_Interface; + USB_CDC_Descriptor_FunctionalHeader_t CDC_Functional_Header; + USB_CDC_Descriptor_FunctionalACM_t CDC_Functional_ACM; + USB_CDC_Descriptor_FunctionalUnion_t CDC_Functional_Union; + USB_Descriptor_Endpoint_t CDC_NotificationEndpoint; + + // CDC Data Interface + USB_Descriptor_Interface_t CDC_DCI_Interface; + USB_Descriptor_Endpoint_t CDC_DataOutEndpoint; + USB_Descriptor_Endpoint_t CDC_DataInEndpoint; + } USB_Descriptor_Configuration_t; + + /** Enum for the device interface descriptor IDs within the device. Each interface descriptor + * should have a unique ID index associated with it, which can be used to refer to the + * interface from other descriptors. + */ + enum InterfaceDescriptors_t + { + INTERFACE_ID_CDC_CCI = 0, /**< CDC CCI interface descriptor ID */ + INTERFACE_ID_CDC_DCI = 1, /**< CDC DCI interface descriptor ID */ + }; + + /** Enum for the device string descriptor IDs within the device. Each string descriptor should + * have a unique ID index associated with it, which can be used to refer to the string from + * other descriptors. + */ + enum StringDescriptors_t + { + STRING_ID_Language = 0, /**< Supported Languages string descriptor ID (must be zero) */ + STRING_ID_Manufacturer = 1, /**< Manufacturer string ID */ + STRING_ID_Product = 2, /**< Product string ID */ + }; + + /* Function Prototypes: */ + uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, + const uint16_t wIndex, + const void** const DescriptorAddress) + ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3); + +#endif + diff --git a/Bootloaders/CDC/LUFA CDC Bootloader.inf b/Bootloaders/CDC/LUFA CDC Bootloader.inf new file mode 100644 index 000000000..61624c731 --- /dev/null +++ b/Bootloaders/CDC/LUFA CDC Bootloader.inf @@ -0,0 +1,66 @@ +;************************************************************ +; Windows USB CDC ACM Setup File +; Copyright (c) 2000 Microsoft Corporation +;************************************************************ + +[DefaultInstall] +CopyINF="LUFA CDC Bootloader.inf" + +[Version] +Signature="$Windows NT$" +Class=Ports +ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} +Provider=%MFGNAME% +DriverVer=7/1/2012,10.0.0.0 + +[Manufacturer] +%MFGNAME%=DeviceList, NTx86, NTamd64, NTia64 + +[SourceDisksNames] + +[SourceDisksFiles] + +[DestinationDirs] +DefaultDestDir=12 + +[DriverInstall] +Include=mdmcpq.inf +CopyFiles=FakeModemCopyFileSection +AddReg=DriverInstall.AddReg + +[DriverInstall.Services] +Include=mdmcpq.inf +AddService=usbser, 0x00000002, LowerFilter_Service_Inst + +[DriverInstall.AddReg] +HKR,,EnumPropPages32,,"msports.dll,SerialPortPropPageProvider" + +;------------------------------------------------------------------------------ +; Vendor and Product ID Definitions +;------------------------------------------------------------------------------ +; When developing your USB device, the VID and PID used in the PC side +; application program and the firmware on the microcontroller must match. +; Modify the below line to use your VID and PID. Use the format as shown below. +; Note: One INF file can be used for multiple devices with different VID and PIDs. +; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. +;------------------------------------------------------------------------------ +[DeviceList] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A + +[DeviceList.NTx86] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A + +[DeviceList.NTamd64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A + +[DeviceList.NTia64] +%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204A + +;------------------------------------------------------------------------------ +; String Definitions +;------------------------------------------------------------------------------ +;Modify these strings to customize your device +;------------------------------------------------------------------------------ +[Strings] +MFGNAME="http://www.lufa-lib.org" +DESCRIPTION="LUFA CDC Class Bootloader" diff --git a/Bootloaders/CDC/asf.xml b/Bootloaders/CDC/asf.xml new file mode 100644 index 000000000..72f3ff04c --- /dev/null +++ b/Bootloaders/CDC/asf.xml @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CDC Class Bootloader, capable of reprogramming a device using avrdude or other AVR109 protocol compliant software when plugged into a host. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Bootloaders/CDC/doxyfile b/Bootloaders/CDC/doxyfile new file mode 100644 index 000000000..414693479 --- /dev/null +++ b/Bootloaders/CDC/doxyfile @@ -0,0 +1,2396 @@ +# Doxyfile 1.8.9 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "LUFA Library - CDC Class Bootloader" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./Documentation/ + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = YES + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = NO + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = NO + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = NO + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = NO + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = YES + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = ./ + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = *.h \ + *.c \ + *.txt + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = Documentation/ + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = __* \ + INCLUDE_FROM_* + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = NO + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = NO + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# compiled with the --with-libclang option. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = YES + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = YES + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = YES + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 1 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /