├── .drone.yml ├── .gitignore ├── Bootloaders ├── CDC │ ├── BootloaderAPI.c │ ├── BootloaderAPI.h │ ├── BootloaderAPITable.S │ ├── BootloaderCDC.c │ ├── BootloaderCDC.h │ ├── BootloaderCDC.txt │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── LUFA CDC Bootloader.inf │ ├── doxyfile │ └── makefile ├── DFU │ ├── BootloaderAPI.c │ ├── BootloaderAPI.h │ ├── BootloaderAPITable.S │ ├── BootloaderDFU.c │ ├── BootloaderDFU.h │ ├── BootloaderDFU.txt │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── doxyfile │ └── makefile ├── HID │ ├── BootloaderHID.c │ ├── BootloaderHID.h │ ├── BootloaderHID.txt │ ├── Config │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── HostLoaderApp │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Makefile.bsd │ │ ├── gpl3.txt │ │ └── hid_bootloader_cli.c │ ├── HostLoaderApp_Python │ │ └── hid_bootloader_loader.py │ ├── doxyfile │ └── makefile ├── MassStorage │ ├── BootloaderAPI.c │ ├── BootloaderAPI.h │ ├── BootloaderAPITable.S │ ├── BootloaderMassStorage.c │ ├── BootloaderMassStorage.h │ ├── BootloaderMassStorage.txt │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Lib │ │ ├── SCSI.c │ │ ├── SCSI.h │ │ ├── VirtualFAT.c │ │ └── VirtualFAT.h │ ├── doxyfile │ └── makefile ├── Printer │ ├── BootloaderAPI.c │ ├── BootloaderAPI.h │ ├── BootloaderAPITable.S │ ├── BootloaderPrinter.c │ ├── BootloaderPrinter.h │ ├── BootloaderPrinter.txt │ ├── Config │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── doxyfile │ └── makefile └── makefile ├── BuildTests ├── BoardDriverTest │ ├── Board │ │ ├── Board.h │ │ ├── Buttons.h │ │ ├── Dataflash.h │ │ ├── Joystick.h │ │ └── LEDs.h │ ├── BoardDeviceMap.cfg │ ├── Test.c │ ├── makefile │ └── makefile.test ├── BootloaderTest │ ├── BootloaderDeviceMap.cfg │ └── makefile ├── ModuleTest │ ├── Dummy.S │ ├── Modules.h │ ├── Test_C.c │ ├── Test_CPP.cpp │ ├── makefile │ └── makefile.test ├── SingleUSBModeTest │ ├── Dummy.S │ ├── Test.c │ ├── makefile │ └── makefile.test ├── StaticAnalysisTest │ └── makefile └── makefile ├── Demos ├── Device │ ├── ClassDriver │ │ ├── AudioInput │ │ │ ├── AudioInput.c │ │ │ ├── AudioInput.h │ │ │ ├── AudioInput.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── AudioOutput │ │ │ ├── AudioOutput.c │ │ │ ├── AudioOutput.h │ │ │ ├── AudioOutput.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── CCID │ │ │ ├── CCID.c │ │ │ ├── CCID.h │ │ │ ├── CCID.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── HostTestApp │ │ │ │ └── test_generic_ccid_libusb.js │ │ │ ├── Lib │ │ │ │ ├── Iso7816.c │ │ │ │ └── Iso7816.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── DualMIDI │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── DualMIDI.c │ │ │ ├── DualMIDI.h │ │ │ ├── DualMIDI.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── DualVirtualSerial │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── DualVirtualSerial.c │ │ │ ├── DualVirtualSerial.h │ │ │ ├── DualVirtualSerial.txt │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── GenericHID │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── GenericHID.c │ │ │ ├── GenericHID.h │ │ │ ├── GenericHID.txt │ │ │ ├── HostTestApp │ │ │ │ ├── test_generic_hid_libusb.js │ │ │ │ ├── test_generic_hid_libusb.py │ │ │ │ └── test_generic_hid_winusb.py │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── Joystick │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Joystick.c │ │ │ ├── Joystick.h │ │ │ ├── Joystick.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── Keyboard │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Keyboard.c │ │ │ ├── Keyboard.h │ │ │ ├── Keyboard.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── KeyboardMouse │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── KeyboardMouse.c │ │ │ ├── KeyboardMouse.h │ │ │ ├── KeyboardMouse.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── KeyboardMouseMultiReport │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── KeyboardMouseMultiReport.c │ │ │ ├── KeyboardMouseMultiReport.h │ │ │ ├── KeyboardMouseMultiReport.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MIDI │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── MIDI.c │ │ │ ├── MIDI.h │ │ │ ├── MIDI.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MassStorage │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Lib │ │ │ │ ├── DataflashManager.c │ │ │ │ ├── DataflashManager.h │ │ │ │ ├── SCSI.c │ │ │ │ └── SCSI.h │ │ │ ├── MassStorage.c │ │ │ ├── MassStorage.h │ │ │ ├── MassStorage.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MassStorageKeyboard │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Lib │ │ │ │ ├── DataflashManager.c │ │ │ │ ├── DataflashManager.h │ │ │ │ ├── SCSI.c │ │ │ │ └── SCSI.h │ │ │ ├── MassStorageKeyboard.c │ │ │ ├── MassStorageKeyboard.h │ │ │ ├── MassStorageKeyboard.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── Mouse │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Mouse.c │ │ │ ├── Mouse.h │ │ │ ├── Mouse.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── RNDISEthernet │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── LUFA RNDIS.inf │ │ │ ├── RNDISEthernet.c │ │ │ ├── RNDISEthernet.h │ │ │ ├── RNDISEthernet.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── VirtualSerial │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── LUFA VirtualSerial.inf │ │ │ ├── VirtualSerial.c │ │ │ ├── VirtualSerial.h │ │ │ ├── VirtualSerial.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── VirtualSerialMassStorage │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── LUFA VirtualSerialMassStorage.inf │ │ │ ├── Lib │ │ │ │ ├── DataflashManager.c │ │ │ │ ├── DataflashManager.h │ │ │ │ ├── SCSI.c │ │ │ │ └── SCSI.h │ │ │ ├── VirtualSerialMassStorage.c │ │ │ ├── VirtualSerialMassStorage.h │ │ │ ├── VirtualSerialMassStorage.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── VirtualSerialMouse │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── LUFA VirtualSerialMouse.inf │ │ │ ├── VirtualSerialMouse.c │ │ │ ├── VirtualSerialMouse.h │ │ │ ├── VirtualSerialMouse.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ └── makefile │ ├── Incomplete │ │ └── TestAndMeasurement │ │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── TestAndMeasurement.c │ │ │ ├── TestAndMeasurement.h │ │ │ └── makefile │ ├── LowLevel │ │ ├── AudioInput │ │ │ ├── AudioInput.c │ │ │ ├── AudioInput.h │ │ │ ├── AudioInput.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── AudioOutput │ │ │ ├── AudioOutput.c │ │ │ ├── AudioOutput.h │ │ │ ├── AudioOutput.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── BulkVendor │ │ │ ├── BulkVendor.c │ │ │ ├── BulkVendor.h │ │ │ ├── BulkVendor.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── HostTestApp │ │ │ │ └── test_bulk_vendor.py │ │ │ ├── WindowsDriver │ │ │ │ ├── LUFA_Bulk_Vendor_Demo.inf │ │ │ │ ├── amd64 │ │ │ │ │ ├── libusb0.dll │ │ │ │ │ └── libusb0.sys │ │ │ │ ├── ia64 │ │ │ │ │ ├── libusb0.dll │ │ │ │ │ └── libusb0.sys │ │ │ │ ├── installer_x64.exe │ │ │ │ ├── installer_x86.exe │ │ │ │ ├── license │ │ │ │ │ └── libusb0 │ │ │ │ │ │ └── installer_license.txt │ │ │ │ └── x86 │ │ │ │ │ ├── libusb0.sys │ │ │ │ │ └── libusb0_x86.dll │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── CCID │ │ │ ├── CCID.c │ │ │ ├── CCID.h │ │ │ ├── CCID.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── HostTestApp │ │ │ │ └── test_generic_ccid_libusb.js │ │ │ ├── Lib │ │ │ │ ├── Iso7816.c │ │ │ │ └── Iso7816.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── DualVirtualSerial │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── DualVirtualSerial.c │ │ │ ├── DualVirtualSerial.h │ │ │ ├── DualVirtualSerial.txt │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── GenericHID │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── GenericHID.c │ │ │ ├── GenericHID.h │ │ │ ├── GenericHID.txt │ │ │ ├── HostTestApp │ │ │ │ └── test_generic_hid.py │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── Joystick │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Joystick.c │ │ │ ├── Joystick.h │ │ │ ├── Joystick.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── Keyboard │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Keyboard.c │ │ │ ├── Keyboard.h │ │ │ ├── Keyboard.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── KeyboardMouse │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── KeyboardMouse.c │ │ │ ├── KeyboardMouse.h │ │ │ ├── KeyboardMouse.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MIDI │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── MIDI.c │ │ │ ├── MIDI.h │ │ │ ├── MIDI.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MassStorage │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Lib │ │ │ │ ├── DataflashManager.c │ │ │ │ ├── DataflashManager.h │ │ │ │ ├── SCSI.c │ │ │ │ └── SCSI.h │ │ │ ├── MassStorage.c │ │ │ ├── MassStorage.h │ │ │ ├── MassStorage.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── Mouse │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Mouse.c │ │ │ ├── Mouse.h │ │ │ ├── Mouse.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── RNDISEthernet │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── LUFA RNDIS.inf │ │ │ ├── Lib │ │ │ │ ├── RNDIS.c │ │ │ │ └── RNDIS.h │ │ │ ├── RNDISEthernet.c │ │ │ ├── RNDISEthernet.h │ │ │ ├── RNDISEthernet.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── VirtualSerial │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── LUFA VirtualSerial.inf │ │ │ ├── VirtualSerial.c │ │ │ ├── VirtualSerial.h │ │ │ ├── VirtualSerial.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ └── makefile │ └── makefile ├── DualRole │ ├── ClassDriver │ │ ├── MouseHostDevice │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── DeviceFunctions.c │ │ │ ├── DeviceFunctions.h │ │ │ ├── HostFunctions.c │ │ │ ├── HostFunctions.h │ │ │ ├── MouseHostDevice.c │ │ │ ├── MouseHostDevice.h │ │ │ ├── MouseHostDevice.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ └── makefile │ └── makefile ├── Host │ ├── ClassDriver │ │ ├── AndroidAccessoryHost │ │ │ ├── AndroidAccessoryHost.c │ │ │ ├── AndroidAccessoryHost.h │ │ │ ├── AndroidAccessoryHost.txt │ │ │ ├── AndroidHostApp │ │ │ │ └── AndroidHostApp.zip │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── AudioInputHost │ │ │ ├── AudioInputHost.c │ │ │ ├── AudioInputHost.h │ │ │ ├── AudioInputHost.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── AudioOutputHost │ │ │ ├── AudioOutputHost.c │ │ │ ├── AudioOutputHost.h │ │ │ ├── AudioOutputHost.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── JoystickHostWithParser │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── JoystickHostWithParser.c │ │ │ ├── JoystickHostWithParser.h │ │ │ ├── JoystickHostWithParser.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── KeyboardHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── KeyboardHost.c │ │ │ ├── KeyboardHost.h │ │ │ ├── KeyboardHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── KeyboardHostWithParser │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── KeyboardHostWithParser.c │ │ │ ├── KeyboardHostWithParser.h │ │ │ ├── KeyboardHostWithParser.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MIDIHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── MIDIHost.c │ │ │ ├── MIDIHost.h │ │ │ ├── MIDIHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MassStorageHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── MassStorageHost.c │ │ │ ├── MassStorageHost.h │ │ │ ├── MassStorageHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MouseHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── MouseHost.c │ │ │ ├── MouseHost.h │ │ │ ├── MouseHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MouseHostWithParser │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── MouseHostWithParser.c │ │ │ ├── MouseHostWithParser.h │ │ │ ├── MouseHostWithParser.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── PrinterHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── PrinterHost.c │ │ │ ├── PrinterHost.h │ │ │ ├── PrinterHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── RNDISEthernetHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── RNDISEthernetHost.c │ │ │ ├── RNDISEthernetHost.h │ │ │ ├── RNDISEthernetHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── StillImageHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── StillImageHost.c │ │ │ ├── StillImageHost.h │ │ │ ├── StillImageHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── VirtualSerialHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── VirtualSerialHost.c │ │ │ ├── VirtualSerialHost.h │ │ │ ├── VirtualSerialHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ └── makefile │ ├── LowLevel │ │ ├── AndroidAccessoryHost │ │ │ ├── AndroidAccessoryHost.c │ │ │ ├── AndroidAccessoryHost.h │ │ │ ├── AndroidAccessoryHost.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── DeviceDescriptor.c │ │ │ ├── DeviceDescriptor.h │ │ │ ├── Lib │ │ │ │ ├── AndroidAccessoryCommands.c │ │ │ │ └── AndroidAccessoryCommands.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── AudioInputHost │ │ │ ├── AudioInputHost.c │ │ │ ├── AudioInputHost.h │ │ │ ├── AudioInputHost.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── AudioOutputHost │ │ │ ├── AudioOutputHost.c │ │ │ ├── AudioOutputHost.h │ │ │ ├── AudioOutputHost.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── GenericHIDHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── GenericHIDHost.c │ │ │ ├── GenericHIDHost.h │ │ │ ├── GenericHIDHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── JoystickHostWithParser │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── HIDReport.c │ │ │ ├── HIDReport.h │ │ │ ├── JoystickHostWithParser.c │ │ │ ├── JoystickHostWithParser.h │ │ │ ├── JoystickHostWithParser.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── KeyboardHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── KeyboardHost.c │ │ │ ├── KeyboardHost.h │ │ │ ├── KeyboardHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── KeyboardHostWithParser │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── HIDReport.c │ │ │ ├── HIDReport.h │ │ │ ├── KeyboardHostWithParser.c │ │ │ ├── KeyboardHostWithParser.h │ │ │ ├── KeyboardHostWithParser.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MIDIHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── MIDIHost.c │ │ │ ├── MIDIHost.h │ │ │ ├── MIDIHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MassStorageHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Lib │ │ │ │ ├── MassStoreCommands.c │ │ │ │ └── MassStoreCommands.h │ │ │ ├── MassStorageHost.c │ │ │ ├── MassStorageHost.h │ │ │ ├── MassStorageHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MouseHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── MouseHost.c │ │ │ ├── MouseHost.h │ │ │ ├── MouseHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MouseHostWithParser │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── HIDReport.c │ │ │ ├── HIDReport.h │ │ │ ├── MouseHostWithParser.c │ │ │ ├── MouseHostWithParser.h │ │ │ ├── MouseHostWithParser.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── PrinterHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Lib │ │ │ │ ├── PrinterCommands.c │ │ │ │ └── PrinterCommands.h │ │ │ ├── PrinterHost.c │ │ │ ├── PrinterHost.h │ │ │ ├── PrinterHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── RNDISEthernetHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Lib │ │ │ │ ├── RNDISCommands.c │ │ │ │ └── RNDISCommands.h │ │ │ ├── RNDISEthernetHost.c │ │ │ ├── RNDISEthernetHost.h │ │ │ ├── RNDISHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── StillImageHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Lib │ │ │ │ ├── PIMACodes.h │ │ │ │ ├── StillImageCommands.c │ │ │ │ └── StillImageCommands.h │ │ │ ├── StillImageHost.c │ │ │ ├── StillImageHost.h │ │ │ ├── StillImageHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── VirtualSerialHost │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── VirtualSerialHost.c │ │ │ ├── VirtualSerialHost.h │ │ │ ├── VirtualSerialHost.txt │ │ │ ├── doxyfile │ │ │ └── makefile │ │ └── makefile │ └── makefile └── makefile ├── LUFA ├── Build │ ├── DMBS │ │ ├── .gitignore │ │ ├── DMBS │ │ │ ├── HID_EEPROM_Loader │ │ │ │ ├── HID_EEPROM_Loader.c │ │ │ │ └── makefile │ │ │ ├── License.txt │ │ │ ├── ModulesOverview.md │ │ │ ├── WritingYourOwnModules.md │ │ │ ├── atprogram.md │ │ │ ├── atprogram.mk │ │ │ ├── avrdude.md │ │ │ ├── avrdude.mk │ │ │ ├── core.md │ │ │ ├── core.mk │ │ │ ├── cppcheck.md │ │ │ ├── cppcheck.mk │ │ │ ├── dfu.md │ │ │ ├── dfu.mk │ │ │ ├── doxygen.md │ │ │ ├── doxygen.mk │ │ │ ├── gcc.md │ │ │ ├── gcc.mk │ │ │ ├── hid.md │ │ │ └── hid.mk │ │ ├── Readme.md │ │ └── Template │ │ │ ├── Template.c │ │ │ ├── lib │ │ │ └── TEMPLATE_LIB │ │ │ │ ├── TEMPLATE_LIB.mk │ │ │ │ ├── include │ │ │ │ └── template_lib.h │ │ │ │ └── src │ │ │ │ ├── template_lib.c │ │ │ │ └── template_lib_private.h │ │ │ └── makefile │ ├── LUFA │ │ ├── lufa-gcc.mk │ │ └── lufa-sources.mk │ ├── lufa_atprogram.mk │ ├── lufa_avrdude.mk │ ├── lufa_build.mk │ ├── lufa_core.mk │ ├── lufa_cppcheck.mk │ ├── lufa_dfu.mk │ ├── lufa_doxygen.mk │ ├── lufa_hid.mk │ └── lufa_sources.mk ├── CodeTemplates │ ├── DeviceTemplate │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── DeviceApplication.c │ │ └── DeviceApplication.h │ ├── DriverStubs │ │ ├── Board.h │ │ ├── Buttons.h │ │ ├── Dataflash.h │ │ ├── Joystick.h │ │ └── LEDs.h │ ├── HostTemplate │ │ ├── HostApplication.c │ │ └── HostApplication.h │ ├── LUFAConfig.h │ ├── WindowsINF │ │ ├── LUFA CDC-ACM.inf │ │ └── LUFA RNDIS.inf │ └── makefile_template ├── Common │ ├── ArchitectureSpecific.h │ ├── Architectures.h │ ├── Attributes.h │ ├── BoardTypes.h │ ├── Common.h │ ├── CompilerSpecific.h │ └── Endianness.h ├── DoxygenPages │ ├── BuildSystem.txt │ ├── BuildingLinkableLibraries.txt │ ├── ChangeLog.txt │ ├── CompileTimeTokens.txt │ ├── CompilingApps.txt │ ├── ConfiguringApps.txt │ ├── DevelopingWithLUFA.txt │ ├── DeviceSupport.txt │ ├── DirectorySummaries.txt │ ├── Donating.txt │ ├── FutureChanges.txt │ ├── GettingStarted.txt │ ├── Groups.txt │ ├── Images │ │ ├── Author.jpg │ │ ├── LUFA.png │ │ └── LUFA_thumb.png │ ├── KnownIssues.txt │ ├── LUFAPoweredProjects.txt │ ├── LibraryResources.txt │ ├── LicenseInfo.txt │ ├── MainPage.txt │ ├── MigrationInformation.txt │ ├── OSDrivers.txt │ ├── ProgrammingApps.txt │ ├── SoftwareBootloaderJump.txt │ ├── Style │ │ ├── Footer.htm │ │ └── Style.css │ ├── VIDAndPIDValues.txt │ └── WritingBoardDrivers.txt ├── Drivers │ ├── Board │ │ ├── AVR8 │ │ │ ├── ADAFRUITU4 │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── ATAVRUSBRF01 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── BENITO │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── BIGMULTIO │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── BLACKCAT │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── BUI │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── BUMBLEB │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── CULV3 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── DUCE │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── EVK527 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── JMDBU2 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── LEONARDO │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── MAXIMUS │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── MICRO │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── MICROPENDOUS │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── MICROSIN162 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── MINIMUS │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── MULTIO │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── OLIMEX162 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── OLIMEX32U4 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── OLIMEXISPMK2 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── OLIMEXT32U4 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── POLOLUMICRO │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── RZUSBSTICK │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── SPARKFUN8U2 │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── STANGE_ISP │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── STK525 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── STK526 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── TEENSY │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── TUL │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── U2S │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── UDIP │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── UNO │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ ├── USB2AX │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── USBFOO │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── USBKEY │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── USBTINYMKII │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ ├── XPLAIN │ │ │ │ ├── Board.h │ │ │ │ ├── Dataflash.h │ │ │ │ └── LEDs.h │ │ │ ├── XPLAINED_MINI │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ │ └── YUN │ │ │ │ ├── Board.h │ │ │ │ └── LEDs.h │ │ ├── Board.h │ │ ├── Buttons.h │ │ ├── Dataflash.h │ │ ├── Joystick.h │ │ ├── LEDs.h │ │ ├── Temperature.c │ │ ├── Temperature.h │ │ ├── UC3 │ │ │ ├── EVK1100 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── EVK1101 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── EVK1104 │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ │ └── UC3A3_XPLAINED │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ └── LEDs.h │ │ └── XMEGA │ │ │ ├── A3BU_XPLAINED │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ └── LEDs.h │ │ │ ├── B1_XPLAINED │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ └── LEDs.h │ │ │ └── C3_XPLAINED │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ └── LEDs.h │ ├── Misc │ │ ├── AT45DB321C.h │ │ ├── AT45DB642D.h │ │ ├── RingBuffer.h │ │ └── TerminalCodes.h │ ├── Peripheral │ │ ├── ADC.h │ │ ├── AVR8 │ │ │ ├── ADC_AVR8.h │ │ │ ├── SPI_AVR8.h │ │ │ ├── SerialSPI_AVR8.h │ │ │ ├── Serial_AVR8.c │ │ │ ├── Serial_AVR8.h │ │ │ ├── TWI_AVR8.c │ │ │ └── TWI_AVR8.h │ │ ├── SPI.h │ │ ├── Serial.h │ │ ├── SerialSPI.h │ │ ├── TWI.h │ │ └── XMEGA │ │ │ ├── SPI_XMEGA.h │ │ │ ├── SerialSPI_XMEGA.h │ │ │ ├── Serial_XMEGA.c │ │ │ ├── Serial_XMEGA.h │ │ │ ├── TWI_XMEGA.c │ │ │ └── TWI_XMEGA.h │ └── USB │ │ ├── Class │ │ ├── AndroidAccessoryClass.h │ │ ├── AudioClass.h │ │ ├── CCIDClass.h │ │ ├── CDCClass.h │ │ ├── Common │ │ │ ├── AndroidAccessoryClassCommon.h │ │ │ ├── AudioClassCommon.h │ │ │ ├── CCIDClassCommon.h │ │ │ ├── CDCClassCommon.h │ │ │ ├── HIDClassCommon.h │ │ │ ├── HIDParser.c │ │ │ ├── HIDParser.h │ │ │ ├── HIDReportData.h │ │ │ ├── MIDIClassCommon.h │ │ │ ├── MassStorageClassCommon.h │ │ │ ├── PrinterClassCommon.h │ │ │ ├── RNDISClassCommon.h │ │ │ └── StillImageClassCommon.h │ │ ├── Device │ │ │ ├── AudioClassDevice.c │ │ │ ├── AudioClassDevice.h │ │ │ ├── CCIDClassDevice.c │ │ │ ├── CCIDClassDevice.h │ │ │ ├── CDCClassDevice.c │ │ │ ├── CDCClassDevice.h │ │ │ ├── HIDClassDevice.c │ │ │ ├── HIDClassDevice.h │ │ │ ├── MIDIClassDevice.c │ │ │ ├── MIDIClassDevice.h │ │ │ ├── MassStorageClassDevice.c │ │ │ ├── MassStorageClassDevice.h │ │ │ ├── PrinterClassDevice.c │ │ │ ├── PrinterClassDevice.h │ │ │ ├── RNDISClassDevice.c │ │ │ └── RNDISClassDevice.h │ │ ├── HIDClass.h │ │ ├── Host │ │ │ ├── AndroidAccessoryClassHost.c │ │ │ ├── AndroidAccessoryClassHost.h │ │ │ ├── AudioClassHost.c │ │ │ ├── AudioClassHost.h │ │ │ ├── CDCClassHost.c │ │ │ ├── CDCClassHost.h │ │ │ ├── HIDClassHost.c │ │ │ ├── HIDClassHost.h │ │ │ ├── MIDIClassHost.c │ │ │ ├── MIDIClassHost.h │ │ │ ├── MassStorageClassHost.c │ │ │ ├── MassStorageClassHost.h │ │ │ ├── PrinterClassHost.c │ │ │ ├── PrinterClassHost.h │ │ │ ├── RNDISClassHost.c │ │ │ ├── RNDISClassHost.h │ │ │ ├── StillImageClassHost.c │ │ │ └── StillImageClassHost.h │ │ ├── MIDIClass.h │ │ ├── MassStorageClass.h │ │ ├── PrinterClass.h │ │ ├── RNDISClass.h │ │ └── StillImageClass.h │ │ ├── Core │ │ ├── AVR8 │ │ │ ├── Device_AVR8.c │ │ │ ├── Device_AVR8.h │ │ │ ├── EndpointStream_AVR8.c │ │ │ ├── EndpointStream_AVR8.h │ │ │ ├── Endpoint_AVR8.c │ │ │ ├── Endpoint_AVR8.h │ │ │ ├── Host_AVR8.c │ │ │ ├── Host_AVR8.h │ │ │ ├── OTG_AVR8.h │ │ │ ├── PipeStream_AVR8.c │ │ │ ├── PipeStream_AVR8.h │ │ │ ├── Pipe_AVR8.c │ │ │ ├── Pipe_AVR8.h │ │ │ ├── Template │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ └── Template_Pipe_RW.c │ │ │ ├── USBController_AVR8.c │ │ │ ├── USBController_AVR8.h │ │ │ ├── USBInterrupt_AVR8.c │ │ │ └── USBInterrupt_AVR8.h │ │ ├── ConfigDescriptors.c │ │ ├── ConfigDescriptors.h │ │ ├── Device.h │ │ ├── DeviceStandardReq.c │ │ ├── DeviceStandardReq.h │ │ ├── Endpoint.h │ │ ├── EndpointStream.h │ │ ├── Events.c │ │ ├── Events.h │ │ ├── Host.h │ │ ├── HostStandardReq.c │ │ ├── HostStandardReq.h │ │ ├── OTG.h │ │ ├── Pipe.h │ │ ├── PipeStream.h │ │ ├── StdDescriptors.h │ │ ├── StdRequestType.h │ │ ├── UC3 │ │ │ ├── Device_UC3.c │ │ │ ├── Device_UC3.h │ │ │ ├── EndpointStream_UC3.c │ │ │ ├── EndpointStream_UC3.h │ │ │ ├── Endpoint_UC3.c │ │ │ ├── Endpoint_UC3.h │ │ │ ├── Host_UC3.c │ │ │ ├── Host_UC3.h │ │ │ ├── PipeStream_UC3.c │ │ │ ├── PipeStream_UC3.h │ │ │ ├── Pipe_UC3.c │ │ │ ├── Pipe_UC3.h │ │ │ ├── Template │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ └── Template_Pipe_RW.c │ │ │ ├── USBController_UC3.c │ │ │ ├── USBController_UC3.h │ │ │ ├── USBInterrupt_UC3.c │ │ │ └── USBInterrupt_UC3.h │ │ ├── USBController.h │ │ ├── USBInterrupt.h │ │ ├── USBMode.h │ │ ├── USBTask.c │ │ ├── USBTask.h │ │ └── XMEGA │ │ │ ├── Device_XMEGA.c │ │ │ ├── Device_XMEGA.h │ │ │ ├── EndpointStream_XMEGA.c │ │ │ ├── EndpointStream_XMEGA.h │ │ │ ├── Endpoint_XMEGA.c │ │ │ ├── Endpoint_XMEGA.h │ │ │ ├── Host_XMEGA.c │ │ │ ├── PipeStream_XMEGA.c │ │ │ ├── Pipe_XMEGA.c │ │ │ ├── Template │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ └── Template_Endpoint_RW.c │ │ │ ├── USBController_XMEGA.c │ │ │ ├── USBController_XMEGA.h │ │ │ ├── USBInterrupt_XMEGA.c │ │ │ └── USBInterrupt_XMEGA.h │ │ └── USB.h ├── License.txt ├── Platform │ ├── Platform.h │ ├── UC3 │ │ ├── ClockManagement.h │ │ ├── Exception.S │ │ ├── InterruptManagement.c │ │ ├── InterruptManagement.h │ │ └── UC3ExperimentalInfo.txt │ └── XMEGA │ │ ├── ClockManagement.h │ │ └── XMEGAExperimentalInfo.txt ├── Version.h ├── doxyfile └── makefile ├── Maintenance ├── lufa_functionlist_transform.xslt └── makefile ├── Projects ├── AVRISP-MKII │ ├── AVRISP-MKII.c │ ├── AVRISP-MKII.h │ ├── AVRISP-MKII.txt │ ├── AVRISPDescriptors.c │ ├── AVRISPDescriptors.h │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Lib │ │ ├── ISP │ │ │ ├── ISPProtocol.c │ │ │ ├── ISPProtocol.h │ │ │ ├── ISPTarget.c │ │ │ └── ISPTarget.h │ │ ├── V2Protocol.c │ │ ├── V2Protocol.h │ │ ├── V2ProtocolConstants.h │ │ ├── V2ProtocolParams.c │ │ ├── V2ProtocolParams.h │ │ └── XPROG │ │ │ ├── TINYNVM.c │ │ │ ├── TINYNVM.h │ │ │ ├── XMEGANVM.c │ │ │ ├── XMEGANVM.h │ │ │ ├── XPROGProtocol.c │ │ │ ├── XPROGProtocol.h │ │ │ ├── XPROGTarget.c │ │ │ └── XPROGTarget.h │ ├── WindowsDriver │ │ ├── AVRISP_mkII.inf │ │ ├── amd64 │ │ │ ├── libusb0.dll │ │ │ └── libusb0.sys │ │ ├── avrisp_mkii.cat │ │ ├── ia64 │ │ │ ├── libusb0.dll │ │ │ └── libusb0.sys │ │ ├── installer_x64.exe │ │ ├── installer_x86.exe │ │ ├── license │ │ │ └── libusb0 │ │ │ │ └── installer_license.txt │ │ └── x86 │ │ │ ├── libusb0.sys │ │ │ └── libusb0_x86.dll │ ├── doxyfile │ └── makefile ├── Benito │ ├── Benito.c │ ├── Benito.h │ ├── Benito.txt │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── LUFA Benito Programmer.inf │ ├── doxyfile │ └── makefile ├── HIDReportViewer │ ├── Config │ │ └── LUFAConfig.h │ ├── HIDReportViewer.c │ ├── HIDReportViewer.h │ ├── HIDReportViewer.txt │ ├── doxyfile │ └── makefile ├── LEDNotifier │ ├── CPUUsageApp │ │ ├── CPUMonitor.Designer.cs │ │ ├── CPUMonitor.cs │ │ ├── CPUMonitor.csproj │ │ ├── CPUMonitor.resx │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── Config │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── LEDMixerApp │ │ ├── LEDMixer.Designer.cs │ │ ├── LEDMixer.cs │ │ ├── LEDMixer.csproj │ │ ├── LEDMixer.resx │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── LEDNotifier.c │ ├── LEDNotifier.h │ ├── LEDNotifier.txt │ ├── LUFA LED Notifier.inf │ ├── doxyfile │ └── makefile ├── MIDIToneGenerator │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── MIDIToneGenerator.c │ ├── MIDIToneGenerator.h │ ├── MIDIToneGenerator.txt │ ├── doxyfile │ └── makefile ├── Magstripe │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Lib │ │ ├── CircularBitBuffer.c │ │ ├── CircularBitBuffer.h │ │ └── MagstripeHW.h │ ├── Magstripe.c │ ├── Magstripe.h │ ├── Magstripe.txt │ ├── doxyfile │ └── makefile ├── MediaController │ ├── Config │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── MediaController.c │ ├── MediaController.h │ ├── MediaController.txt │ ├── doxyfile │ └── makefile ├── MissileLauncher │ ├── Config │ │ └── LUFAConfig.h │ ├── ConfigDescriptor.c │ ├── ConfigDescriptor.h │ ├── MissileLauncher.c │ ├── MissileLauncher.h │ ├── MissileLauncher.txt │ ├── doxyfile │ └── makefile ├── RelayBoard │ ├── Config │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── RelayBoard.c │ ├── RelayBoard.h │ ├── RelayBoard.txt │ ├── doxyfile │ └── makefile ├── SerialToLCD │ ├── Config │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── LUFA SerialToLCD.inf │ ├── Lib │ │ ├── HD44780.c │ │ └── HD44780.h │ ├── SerialToLCD.c │ ├── SerialToLCD.h │ ├── SerialToLCD.txt │ ├── doxyfile │ └── makefile ├── TempDataLogger │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Lib │ │ ├── DataflashManager.c │ │ ├── DataflashManager.h │ │ ├── FATFs │ │ │ ├── 00readme.txt │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ └── integer.h │ │ ├── RTC.c │ │ ├── RTC.h │ │ ├── SCSI.c │ │ └── SCSI.h │ ├── TempDataLogger.c │ ├── TempDataLogger.h │ ├── TempLogHostApp │ │ ├── COPYING.LESSER.txt │ │ ├── COPYING.txt │ │ ├── DataLoggerSettings.Designer.cs │ │ ├── DataLoggerSettings.cs │ │ ├── DataLoggerSettings.resx │ │ ├── Hid.Linux.dll │ │ ├── Hid.Net.dll │ │ ├── Hid.Win32.dll │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── README.txt │ │ └── TempLoggerHostApp.csproj │ ├── TempLogHostApp_Python │ │ └── temp_log_config.py │ ├── TemperatureDataLogger.txt │ ├── doxyfile │ └── makefile ├── USBtoSerial │ ├── Config │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── LUFA USBtoSerial.inf │ ├── USBtoSerial.c │ ├── USBtoSerial.h │ ├── USBtoSerial.txt │ ├── doxyfile │ └── makefile ├── Webserver │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── LUFA Webserver RNDIS.inf │ ├── Lib │ │ ├── DHCPClientApp.c │ │ ├── DHCPClientApp.h │ │ ├── DHCPCommon.c │ │ ├── DHCPCommon.h │ │ ├── DHCPServerApp.c │ │ ├── DHCPServerApp.h │ │ ├── DataflashManager.c │ │ ├── DataflashManager.h │ │ ├── FATFs │ │ │ ├── 00readme.txt │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ └── integer.h │ │ ├── HTTPServerApp.c │ │ ├── HTTPServerApp.h │ │ ├── SCSI.c │ │ ├── SCSI.h │ │ ├── TELNETServerApp.c │ │ ├── TELNETServerApp.h │ │ ├── uIPManagement.c │ │ ├── uIPManagement.h │ │ └── uip │ │ │ ├── clock.c │ │ │ ├── clock.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── uip-split.c │ │ │ ├── uip-split.h │ │ │ ├── uip.c │ │ │ ├── uip.h │ │ │ ├── uip_arp.c │ │ │ ├── uip_arp.h │ │ │ └── uipopt.h │ ├── USBDeviceMode.c │ ├── USBDeviceMode.h │ ├── USBHostMode.c │ ├── USBHostMode.h │ ├── Webserver.c │ ├── Webserver.h │ ├── Webserver.txt │ ├── doxyfile │ └── makefile ├── XPLAINBridge │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ ├── LUFA XPLAIN Bridge.inf │ ├── Lib │ │ ├── SoftUART.c │ │ └── SoftUART.h │ ├── USARTDescriptors.c │ ├── USARTDescriptors.h │ ├── XPLAINBridge.c │ ├── XPLAINBridge.h │ ├── XPLAINBridge.txt │ ├── doxyfile │ └── makefile └── makefile ├── README.txt └── makefile /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/.gitignore -------------------------------------------------------------------------------- /Bootloaders/CDC/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/BootloaderAPI.c -------------------------------------------------------------------------------- /Bootloaders/CDC/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/BootloaderAPI.h -------------------------------------------------------------------------------- /Bootloaders/CDC/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/BootloaderAPITable.S -------------------------------------------------------------------------------- /Bootloaders/CDC/BootloaderCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/BootloaderCDC.c -------------------------------------------------------------------------------- /Bootloaders/CDC/BootloaderCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/BootloaderCDC.h -------------------------------------------------------------------------------- /Bootloaders/CDC/BootloaderCDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/BootloaderCDC.txt -------------------------------------------------------------------------------- /Bootloaders/CDC/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/Config/AppConfig.h -------------------------------------------------------------------------------- /Bootloaders/CDC/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Bootloaders/CDC/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/Descriptors.c -------------------------------------------------------------------------------- /Bootloaders/CDC/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/Descriptors.h -------------------------------------------------------------------------------- /Bootloaders/CDC/LUFA CDC Bootloader.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/LUFA CDC Bootloader.inf -------------------------------------------------------------------------------- /Bootloaders/CDC/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/doxyfile -------------------------------------------------------------------------------- /Bootloaders/CDC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/CDC/makefile -------------------------------------------------------------------------------- /Bootloaders/DFU/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/BootloaderAPI.c -------------------------------------------------------------------------------- /Bootloaders/DFU/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/BootloaderAPI.h -------------------------------------------------------------------------------- /Bootloaders/DFU/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/BootloaderAPITable.S -------------------------------------------------------------------------------- /Bootloaders/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /Bootloaders/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /Bootloaders/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /Bootloaders/DFU/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/Config/AppConfig.h -------------------------------------------------------------------------------- /Bootloaders/DFU/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Bootloaders/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/Descriptors.c -------------------------------------------------------------------------------- /Bootloaders/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/Descriptors.h -------------------------------------------------------------------------------- /Bootloaders/DFU/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/doxyfile -------------------------------------------------------------------------------- /Bootloaders/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/DFU/makefile -------------------------------------------------------------------------------- /Bootloaders/HID/BootloaderHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/BootloaderHID.c -------------------------------------------------------------------------------- /Bootloaders/HID/BootloaderHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/BootloaderHID.h -------------------------------------------------------------------------------- /Bootloaders/HID/BootloaderHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/BootloaderHID.txt -------------------------------------------------------------------------------- /Bootloaders/HID/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Bootloaders/HID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/Descriptors.c -------------------------------------------------------------------------------- /Bootloaders/HID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/Descriptors.h -------------------------------------------------------------------------------- /Bootloaders/HID/HostLoaderApp/.gitignore: -------------------------------------------------------------------------------- 1 | hid_bootloader_cli 2 | -------------------------------------------------------------------------------- /Bootloaders/HID/HostLoaderApp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/HostLoaderApp/Makefile -------------------------------------------------------------------------------- /Bootloaders/HID/HostLoaderApp/Makefile.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/HostLoaderApp/Makefile.bsd -------------------------------------------------------------------------------- /Bootloaders/HID/HostLoaderApp/gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/HostLoaderApp/gpl3.txt -------------------------------------------------------------------------------- /Bootloaders/HID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/doxyfile -------------------------------------------------------------------------------- /Bootloaders/HID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/HID/makefile -------------------------------------------------------------------------------- /Bootloaders/MassStorage/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/BootloaderAPI.c -------------------------------------------------------------------------------- /Bootloaders/MassStorage/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/BootloaderAPI.h -------------------------------------------------------------------------------- /Bootloaders/MassStorage/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/BootloaderAPITable.S -------------------------------------------------------------------------------- /Bootloaders/MassStorage/BootloaderMassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/BootloaderMassStorage.c -------------------------------------------------------------------------------- /Bootloaders/MassStorage/BootloaderMassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/BootloaderMassStorage.h -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Config/AppConfig.h -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Descriptors.c -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Descriptors.h -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Lib/VirtualFAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Lib/VirtualFAT.c -------------------------------------------------------------------------------- /Bootloaders/MassStorage/Lib/VirtualFAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/Lib/VirtualFAT.h -------------------------------------------------------------------------------- /Bootloaders/MassStorage/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/doxyfile -------------------------------------------------------------------------------- /Bootloaders/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/MassStorage/makefile -------------------------------------------------------------------------------- /Bootloaders/Printer/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/BootloaderAPI.c -------------------------------------------------------------------------------- /Bootloaders/Printer/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/BootloaderAPI.h -------------------------------------------------------------------------------- /Bootloaders/Printer/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/BootloaderAPITable.S -------------------------------------------------------------------------------- /Bootloaders/Printer/BootloaderPrinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/BootloaderPrinter.c -------------------------------------------------------------------------------- /Bootloaders/Printer/BootloaderPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/BootloaderPrinter.h -------------------------------------------------------------------------------- /Bootloaders/Printer/BootloaderPrinter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/BootloaderPrinter.txt -------------------------------------------------------------------------------- /Bootloaders/Printer/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Bootloaders/Printer/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/Descriptors.c -------------------------------------------------------------------------------- /Bootloaders/Printer/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/Descriptors.h -------------------------------------------------------------------------------- /Bootloaders/Printer/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/doxyfile -------------------------------------------------------------------------------- /Bootloaders/Printer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/Printer/makefile -------------------------------------------------------------------------------- /Bootloaders/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Bootloaders/makefile -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/Board/Board.h -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/Board/Buttons.h -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/Board/Dataflash.h -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/Board/Joystick.h -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/Board/LEDs.h -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/BoardDeviceMap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/BoardDeviceMap.cfg -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/Test.c -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/makefile -------------------------------------------------------------------------------- /BuildTests/BoardDriverTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BoardDriverTest/makefile.test -------------------------------------------------------------------------------- /BuildTests/BootloaderTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/BootloaderTest/makefile -------------------------------------------------------------------------------- /BuildTests/ModuleTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/ModuleTest/Dummy.S -------------------------------------------------------------------------------- /BuildTests/ModuleTest/Modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/ModuleTest/Modules.h -------------------------------------------------------------------------------- /BuildTests/ModuleTest/Test_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/ModuleTest/Test_C.c -------------------------------------------------------------------------------- /BuildTests/ModuleTest/Test_CPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/ModuleTest/Test_CPP.cpp -------------------------------------------------------------------------------- /BuildTests/ModuleTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/ModuleTest/makefile -------------------------------------------------------------------------------- /BuildTests/ModuleTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/ModuleTest/makefile.test -------------------------------------------------------------------------------- /BuildTests/SingleUSBModeTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/SingleUSBModeTest/Dummy.S -------------------------------------------------------------------------------- /BuildTests/SingleUSBModeTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/SingleUSBModeTest/Test.c -------------------------------------------------------------------------------- /BuildTests/SingleUSBModeTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/SingleUSBModeTest/makefile -------------------------------------------------------------------------------- /BuildTests/SingleUSBModeTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/SingleUSBModeTest/makefile.test -------------------------------------------------------------------------------- /BuildTests/StaticAnalysisTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/StaticAnalysisTest/makefile -------------------------------------------------------------------------------- /BuildTests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/BuildTests/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/AudioInput/AudioInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/AudioInput/AudioInput.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/AudioInput/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/AudioInput/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/AudioInput/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/AudioOutput/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/AudioOutput/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/AudioOutput/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/CCID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/CCID.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/CCID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/CCID.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/CCID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/CCID.txt -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/Lib/Iso7816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/Lib/Iso7816.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/Lib/Iso7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/Lib/Iso7816.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/CCID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/CCID/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/DualMIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/DualMIDI/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/DualMIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/DualMIDI/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/DualMIDI/DualMIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/DualMIDI/DualMIDI.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/DualMIDI/DualMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/DualMIDI/DualMIDI.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/DualMIDI/DualMIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/DualMIDI/DualMIDI.txt -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/DualMIDI/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/DualMIDI/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/DualMIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/DualMIDI/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/GenericHID/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/GenericHID/GenericHID.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/GenericHID/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/GenericHID/GenericHID.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/GenericHID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/GenericHID/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/GenericHID/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Joystick/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Joystick/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Joystick/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Joystick/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Joystick/Joystick.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Joystick/Joystick.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Joystick/Joystick.txt -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Joystick/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Joystick/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Joystick/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Keyboard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Keyboard/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Keyboard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Keyboard/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Keyboard/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Keyboard/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Keyboard/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/KeyboardMouse/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/KeyboardMouse/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/KeyboardMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/KeyboardMouse/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MIDI/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MIDI/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MIDI/MIDI.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MIDI/MIDI.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MIDI/MIDI.txt -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MIDI/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MIDI/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MIDI/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MassStorage/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MassStorage/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/MassStorage/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Mouse/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Mouse/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Mouse/Mouse.c -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Mouse/Mouse.h -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Mouse/Mouse.txt -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Mouse/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Mouse/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/Mouse/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/RNDISEthernet/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/RNDISEthernet/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/RNDISEthernet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/RNDISEthernet/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/VirtualSerial/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/VirtualSerial/doxyfile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/VirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/VirtualSerial/makefile -------------------------------------------------------------------------------- /Demos/Device/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/ClassDriver/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioInput/AudioInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioInput/AudioInput.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioInput/AudioInput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioInput/AudioInput.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioInput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioInput/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioInput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioInput/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioInput/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioInput/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioInput/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioOutput/AudioOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioOutput/AudioOutput.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioOutput/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioOutput/AudioOutput.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioOutput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioOutput/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioOutput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioOutput/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioOutput/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioOutput/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/AudioOutput/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/BulkVendor/BulkVendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/BulkVendor/BulkVendor.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/BulkVendor/BulkVendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/BulkVendor/BulkVendor.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/BulkVendor/BulkVendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/BulkVendor/BulkVendor.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/BulkVendor/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/BulkVendor/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/BulkVendor/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/BulkVendor/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/BulkVendor/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/BulkVendor/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/BulkVendor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/BulkVendor/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/CCID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/CCID.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/CCID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/CCID.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/CCID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/CCID.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/Lib/Iso7816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/Lib/Iso7816.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/Lib/Iso7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/Lib/Iso7816.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/CCID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/CCID/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/DualVirtualSerial/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/DualVirtualSerial/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/DualVirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/DualVirtualSerial/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/GenericHID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/GenericHID/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/GenericHID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/GenericHID/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/GenericHID/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/GenericHID/GenericHID.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/GenericHID/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/GenericHID/GenericHID.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/GenericHID/GenericHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/GenericHID/GenericHID.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/GenericHID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/GenericHID/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/GenericHID/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Joystick/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Joystick/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Joystick/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Joystick/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Joystick/Joystick.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Joystick/Joystick.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Joystick/Joystick.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Joystick/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Joystick/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Joystick/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Keyboard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Keyboard/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Keyboard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Keyboard/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Keyboard/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Keyboard/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Keyboard/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/KeyboardMouse/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/KeyboardMouse/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/KeyboardMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/KeyboardMouse/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/MIDI.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/MIDI.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/MIDI.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MIDI/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/MassStorage.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/MassStorage.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/MassStorage/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/Descriptors.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/Descriptors.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/Mouse.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/Mouse.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/Mouse.txt -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/Mouse/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c -------------------------------------------------------------------------------- /Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h -------------------------------------------------------------------------------- /Demos/Device/LowLevel/RNDISEthernet/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/RNDISEthernet/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/RNDISEthernet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/RNDISEthernet/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/VirtualSerial/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/VirtualSerial/doxyfile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/VirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/VirtualSerial/makefile -------------------------------------------------------------------------------- /Demos/Device/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/LowLevel/makefile -------------------------------------------------------------------------------- /Demos/Device/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Device/makefile -------------------------------------------------------------------------------- /Demos/DualRole/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/DualRole/ClassDriver/makefile -------------------------------------------------------------------------------- /Demos/DualRole/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/DualRole/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/AudioInputHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/AudioInputHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/AudioInputHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/AudioInputHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/AudioOutputHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/AudioOutputHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/AudioOutputHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/AudioOutputHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/KeyboardHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/KeyboardHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/KeyboardHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MIDIHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MIDIHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MIDIHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MassStorageHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MassStorageHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MassStorageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MassStorageHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MouseHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MouseHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/MouseHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/PrinterHost/PrinterHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/PrinterHost/PrinterHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/PrinterHost/PrinterHost.h -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/PrinterHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/PrinterHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/PrinterHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/StillImageHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/StillImageHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/StillImageHost/makefile -------------------------------------------------------------------------------- /Demos/Host/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/ClassDriver/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/AudioInputHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/AudioInputHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/AudioInputHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/AudioInputHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/AudioOutputHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/AudioOutputHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/AudioOutputHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/AudioOutputHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/GenericHIDHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/GenericHIDHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/GenericHIDHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/GenericHIDHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c -------------------------------------------------------------------------------- /Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h -------------------------------------------------------------------------------- /Demos/Host/LowLevel/KeyboardHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/KeyboardHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/KeyboardHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MIDIHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MassStorageHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MassStorageHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MassStorageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MassStorageHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHostWithParser/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHostWithParser/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/MouseHostWithParser/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/MouseHostWithParser/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/PrinterHost/PrinterHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/PrinterHost/PrinterHost.c -------------------------------------------------------------------------------- /Demos/Host/LowLevel/PrinterHost/PrinterHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/PrinterHost/PrinterHost.h -------------------------------------------------------------------------------- /Demos/Host/LowLevel/PrinterHost/PrinterHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/PrinterHost/PrinterHost.txt -------------------------------------------------------------------------------- /Demos/Host/LowLevel/PrinterHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/PrinterHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/PrinterHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/RNDISEthernetHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/RNDISEthernetHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/RNDISEthernetHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/RNDISEthernetHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/StillImageHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/StillImageHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/StillImageHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/VirtualSerialHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/VirtualSerialHost/doxyfile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/VirtualSerialHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/VirtualSerialHost/makefile -------------------------------------------------------------------------------- /Demos/Host/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/LowLevel/makefile -------------------------------------------------------------------------------- /Demos/Host/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/Host/makefile -------------------------------------------------------------------------------- /Demos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Demos/makefile -------------------------------------------------------------------------------- /LUFA/Build/DMBS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/.gitignore -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/HID_EEPROM_Loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/HID_EEPROM_Loader/makefile -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/License.txt -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/ModulesOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/ModulesOverview.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/WritingYourOwnModules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/WritingYourOwnModules.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/atprogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/atprogram.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/atprogram.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/avrdude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/avrdude.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/avrdude.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/core.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/core.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/cppcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/cppcheck.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/cppcheck.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/dfu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/dfu.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/dfu.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/doxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/doxygen.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/doxygen.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/gcc.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/gcc.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/hid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/hid.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/DMBS/hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/DMBS/hid.mk -------------------------------------------------------------------------------- /LUFA/Build/DMBS/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/Readme.md -------------------------------------------------------------------------------- /LUFA/Build/DMBS/Template/Template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/Template/Template.c -------------------------------------------------------------------------------- /LUFA/Build/DMBS/Template/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/DMBS/Template/makefile -------------------------------------------------------------------------------- /LUFA/Build/LUFA/lufa-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/LUFA/lufa-gcc.mk -------------------------------------------------------------------------------- /LUFA/Build/LUFA/lufa-sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/LUFA/lufa-sources.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_atprogram.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_avrdude.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_build.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_core.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_cppcheck.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_dfu.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_doxygen.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_hid.mk -------------------------------------------------------------------------------- /LUFA/Build/lufa_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Build/lufa_sources.mk -------------------------------------------------------------------------------- /LUFA/CodeTemplates/DeviceTemplate/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c -------------------------------------------------------------------------------- /LUFA/CodeTemplates/DeviceTemplate/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/DeviceTemplate/Descriptors.h -------------------------------------------------------------------------------- /LUFA/CodeTemplates/DriverStubs/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/DriverStubs/Board.h -------------------------------------------------------------------------------- /LUFA/CodeTemplates/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /LUFA/CodeTemplates/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /LUFA/CodeTemplates/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /LUFA/CodeTemplates/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /LUFA/CodeTemplates/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf -------------------------------------------------------------------------------- /LUFA/CodeTemplates/makefile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/CodeTemplates/makefile_template -------------------------------------------------------------------------------- /LUFA/Common/ArchitectureSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Common/ArchitectureSpecific.h -------------------------------------------------------------------------------- /LUFA/Common/Architectures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Common/Architectures.h -------------------------------------------------------------------------------- /LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Common/Common.h -------------------------------------------------------------------------------- /LUFA/Common/CompilerSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Common/CompilerSpecific.h -------------------------------------------------------------------------------- /LUFA/Common/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Common/Endianness.h -------------------------------------------------------------------------------- /LUFA/DoxygenPages/BuildSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/BuildSystem.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/ChangeLog.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/CompilingApps.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/DeviceSupport.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/Donating.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/FutureChanges.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/GettingStarted.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/Groups.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/Images/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/Images/Author.jpg -------------------------------------------------------------------------------- /LUFA/DoxygenPages/Images/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/Images/LUFA.png -------------------------------------------------------------------------------- /LUFA/DoxygenPages/Images/LUFA_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/Images/LUFA_thumb.png -------------------------------------------------------------------------------- /LUFA/DoxygenPages/KnownIssues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/KnownIssues.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/LibraryResources.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/LicenseInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/LicenseInfo.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/MainPage.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/MigrationInformation.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/OSDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/OSDrivers.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/SoftwareBootloaderJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/SoftwareBootloaderJump.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/Style/Footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/Style/Footer.htm -------------------------------------------------------------------------------- /LUFA/DoxygenPages/Style/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/Style/Style.css -------------------------------------------------------------------------------- /LUFA/DoxygenPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /LUFA/DoxygenPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/DoxygenPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BENITO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BENITO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BUI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BUI/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BUI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BUI/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/CULV3/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/CULV3/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/CULV3/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/CULV3/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/DUCE/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/DUCE/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/DUCE/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/EVK527/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/EVK527/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/JMDBU2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/LEONARDO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MICRO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MICRO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MICRO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MICRO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MINIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MULTIO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/POLOLUMICRO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/POLOLUMICRO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/POLOLUMICRO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/POLOLUMICRO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK525/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK525/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK525/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK525/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK525/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK526/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK526/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK526/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK526/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/STK526/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/TEENSY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/TEENSY/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/TUL/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/TUL/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/TUL/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/TUL/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/TUL/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/TUL/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/U2S/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/U2S/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/U2S/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/U2S/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/U2S/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/U2S/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/UDIP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/UDIP/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/UDIP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/UDIP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/UNO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/UNO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/UNO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/UNO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USB2AX/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USB2AX/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBFOO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBFOO/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBKEY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBKEY/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/XPLAIN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/XPLAINED_MINI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/XPLAINED_MINI/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/XPLAINED_MINI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/XPLAINED_MINI/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/YUN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/YUN/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/AVR8/YUN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/AVR8/YUN/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1100/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1100/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1100/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1100/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1100/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1101/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1101/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1101/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1101/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1101/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1104/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1104/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1104/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/EVK1104/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h -------------------------------------------------------------------------------- /LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA/Drivers/Misc/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Misc/AT45DB321C.h -------------------------------------------------------------------------------- /LUFA/Drivers/Misc/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Misc/AT45DB642D.h -------------------------------------------------------------------------------- /LUFA/Drivers/Misc/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Misc/RingBuffer.h -------------------------------------------------------------------------------- /LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/SerialSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/SerialSPI.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c -------------------------------------------------------------------------------- /LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/AudioClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/CCIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/CCIDClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/CDCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/CDCClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Common/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Common/HIDParser.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Common/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Common/HIDParser.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Common/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Common/HIDReportData.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/HIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/HIDClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/AudioClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/AudioClassHost.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/AudioClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/AudioClassHost.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/CDCClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/CDCClassHost.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/CDCClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/CDCClassHost.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/HIDClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/HIDClassHost.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/HIDClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/HIDClassHost.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/MIDIClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/MIDIClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/RNDISClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/Host/RNDISClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/MIDIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/MIDIClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/MassStorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/MassStorageClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/PrinterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/PrinterClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/RNDISClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/RNDISClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Class/StillImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Class/StillImageClass.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/ConfigDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/ConfigDescriptors.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/ConfigDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/ConfigDescriptors.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/Device.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/DeviceStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/DeviceStandardReq.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/DeviceStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/DeviceStandardReq.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/Endpoint.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/EndpointStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/EndpointStream.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/Events.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/Events.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/Host.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/HostStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/HostStandardReq.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/HostStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/HostStandardReq.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/OTG.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/Pipe.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/PipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/PipeStream.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/StdDescriptors.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/StdRequestType.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Device_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Device_UC3.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Device_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Device_UC3.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Host_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Host_UC3.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Host_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Host_UC3.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/USBController_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/USBController_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/USBController.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/USBInterrupt.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/USBMode.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/USBTask.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/USBTask.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c -------------------------------------------------------------------------------- /LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/License.txt -------------------------------------------------------------------------------- /LUFA/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/Platform.h -------------------------------------------------------------------------------- /LUFA/Platform/UC3/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/UC3/ClockManagement.h -------------------------------------------------------------------------------- /LUFA/Platform/UC3/Exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/UC3/Exception.S -------------------------------------------------------------------------------- /LUFA/Platform/UC3/InterruptManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/UC3/InterruptManagement.c -------------------------------------------------------------------------------- /LUFA/Platform/UC3/InterruptManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/UC3/InterruptManagement.h -------------------------------------------------------------------------------- /LUFA/Platform/UC3/UC3ExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/UC3/UC3ExperimentalInfo.txt -------------------------------------------------------------------------------- /LUFA/Platform/XMEGA/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/XMEGA/ClockManagement.h -------------------------------------------------------------------------------- /LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt -------------------------------------------------------------------------------- /LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/Version.h -------------------------------------------------------------------------------- /LUFA/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/doxyfile -------------------------------------------------------------------------------- /LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/LUFA/makefile -------------------------------------------------------------------------------- /Maintenance/lufa_functionlist_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Maintenance/lufa_functionlist_transform.xslt -------------------------------------------------------------------------------- /Maintenance/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Maintenance/makefile -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/AVRISP-MKII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/AVRISP-MKII.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/AVRISP-MKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/AVRISP-MKII.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/AVRISP-MKII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/AVRISP-MKII.txt -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/AVRISPDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/AVRISPDescriptors.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/AVRISPDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/AVRISPDescriptors.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Config/AppConfig.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/V2Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/V2Protocol.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/V2Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/V2Protocol.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/V2ProtocolParams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/V2ProtocolParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/V2ProtocolParams.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/doxyfile -------------------------------------------------------------------------------- /Projects/AVRISP-MKII/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/AVRISP-MKII/makefile -------------------------------------------------------------------------------- /Projects/Benito/Benito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/Benito.c -------------------------------------------------------------------------------- /Projects/Benito/Benito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/Benito.h -------------------------------------------------------------------------------- /Projects/Benito/Benito.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/Benito.txt -------------------------------------------------------------------------------- /Projects/Benito/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/Config/AppConfig.h -------------------------------------------------------------------------------- /Projects/Benito/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/Benito/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/Descriptors.c -------------------------------------------------------------------------------- /Projects/Benito/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/Descriptors.h -------------------------------------------------------------------------------- /Projects/Benito/LUFA Benito Programmer.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/LUFA Benito Programmer.inf -------------------------------------------------------------------------------- /Projects/Benito/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/doxyfile -------------------------------------------------------------------------------- /Projects/Benito/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Benito/makefile -------------------------------------------------------------------------------- /Projects/HIDReportViewer/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/HIDReportViewer/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/HIDReportViewer/HIDReportViewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/HIDReportViewer/HIDReportViewer.c -------------------------------------------------------------------------------- /Projects/HIDReportViewer/HIDReportViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/HIDReportViewer/HIDReportViewer.h -------------------------------------------------------------------------------- /Projects/HIDReportViewer/HIDReportViewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/HIDReportViewer/HIDReportViewer.txt -------------------------------------------------------------------------------- /Projects/HIDReportViewer/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/HIDReportViewer/doxyfile -------------------------------------------------------------------------------- /Projects/HIDReportViewer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/HIDReportViewer/makefile -------------------------------------------------------------------------------- /Projects/LEDNotifier/CPUUsageApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/CPUUsageApp/Program.cs -------------------------------------------------------------------------------- /Projects/LEDNotifier/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/LEDNotifier/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/Descriptors.c -------------------------------------------------------------------------------- /Projects/LEDNotifier/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/Descriptors.h -------------------------------------------------------------------------------- /Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs -------------------------------------------------------------------------------- /Projects/LEDNotifier/LEDMixerApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/LEDMixerApp/Program.cs -------------------------------------------------------------------------------- /Projects/LEDNotifier/LEDNotifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/LEDNotifier.c -------------------------------------------------------------------------------- /Projects/LEDNotifier/LEDNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/LEDNotifier.h -------------------------------------------------------------------------------- /Projects/LEDNotifier/LEDNotifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/LEDNotifier.txt -------------------------------------------------------------------------------- /Projects/LEDNotifier/LUFA LED Notifier.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/LUFA LED Notifier.inf -------------------------------------------------------------------------------- /Projects/LEDNotifier/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/doxyfile -------------------------------------------------------------------------------- /Projects/LEDNotifier/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/LEDNotifier/makefile -------------------------------------------------------------------------------- /Projects/MIDIToneGenerator/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MIDIToneGenerator/Config/AppConfig.h -------------------------------------------------------------------------------- /Projects/MIDIToneGenerator/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MIDIToneGenerator/Descriptors.c -------------------------------------------------------------------------------- /Projects/MIDIToneGenerator/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MIDIToneGenerator/Descriptors.h -------------------------------------------------------------------------------- /Projects/MIDIToneGenerator/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MIDIToneGenerator/doxyfile -------------------------------------------------------------------------------- /Projects/MIDIToneGenerator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MIDIToneGenerator/makefile -------------------------------------------------------------------------------- /Projects/Magstripe/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Config/AppConfig.h -------------------------------------------------------------------------------- /Projects/Magstripe/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/Magstripe/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Descriptors.c -------------------------------------------------------------------------------- /Projects/Magstripe/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Descriptors.h -------------------------------------------------------------------------------- /Projects/Magstripe/Lib/CircularBitBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Lib/CircularBitBuffer.c -------------------------------------------------------------------------------- /Projects/Magstripe/Lib/CircularBitBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Lib/CircularBitBuffer.h -------------------------------------------------------------------------------- /Projects/Magstripe/Lib/MagstripeHW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Lib/MagstripeHW.h -------------------------------------------------------------------------------- /Projects/Magstripe/Magstripe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Magstripe.c -------------------------------------------------------------------------------- /Projects/Magstripe/Magstripe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Magstripe.h -------------------------------------------------------------------------------- /Projects/Magstripe/Magstripe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/Magstripe.txt -------------------------------------------------------------------------------- /Projects/Magstripe/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/doxyfile -------------------------------------------------------------------------------- /Projects/Magstripe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Magstripe/makefile -------------------------------------------------------------------------------- /Projects/MediaController/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/MediaController/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/Descriptors.c -------------------------------------------------------------------------------- /Projects/MediaController/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/Descriptors.h -------------------------------------------------------------------------------- /Projects/MediaController/MediaController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/MediaController.c -------------------------------------------------------------------------------- /Projects/MediaController/MediaController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/MediaController.h -------------------------------------------------------------------------------- /Projects/MediaController/MediaController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/MediaController.txt -------------------------------------------------------------------------------- /Projects/MediaController/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/doxyfile -------------------------------------------------------------------------------- /Projects/MediaController/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MediaController/makefile -------------------------------------------------------------------------------- /Projects/MissileLauncher/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/MissileLauncher/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/ConfigDescriptor.c -------------------------------------------------------------------------------- /Projects/MissileLauncher/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/ConfigDescriptor.h -------------------------------------------------------------------------------- /Projects/MissileLauncher/MissileLauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/MissileLauncher.c -------------------------------------------------------------------------------- /Projects/MissileLauncher/MissileLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/MissileLauncher.h -------------------------------------------------------------------------------- /Projects/MissileLauncher/MissileLauncher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/MissileLauncher.txt -------------------------------------------------------------------------------- /Projects/MissileLauncher/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/doxyfile -------------------------------------------------------------------------------- /Projects/MissileLauncher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/MissileLauncher/makefile -------------------------------------------------------------------------------- /Projects/RelayBoard/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/RelayBoard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/Descriptors.c -------------------------------------------------------------------------------- /Projects/RelayBoard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/Descriptors.h -------------------------------------------------------------------------------- /Projects/RelayBoard/RelayBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/RelayBoard.c -------------------------------------------------------------------------------- /Projects/RelayBoard/RelayBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/RelayBoard.h -------------------------------------------------------------------------------- /Projects/RelayBoard/RelayBoard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/RelayBoard.txt -------------------------------------------------------------------------------- /Projects/RelayBoard/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/doxyfile -------------------------------------------------------------------------------- /Projects/RelayBoard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/RelayBoard/makefile -------------------------------------------------------------------------------- /Projects/SerialToLCD/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/SerialToLCD/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/Descriptors.c -------------------------------------------------------------------------------- /Projects/SerialToLCD/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/Descriptors.h -------------------------------------------------------------------------------- /Projects/SerialToLCD/LUFA SerialToLCD.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/LUFA SerialToLCD.inf -------------------------------------------------------------------------------- /Projects/SerialToLCD/Lib/HD44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/Lib/HD44780.c -------------------------------------------------------------------------------- /Projects/SerialToLCD/Lib/HD44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/Lib/HD44780.h -------------------------------------------------------------------------------- /Projects/SerialToLCD/SerialToLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/SerialToLCD.c -------------------------------------------------------------------------------- /Projects/SerialToLCD/SerialToLCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/SerialToLCD.h -------------------------------------------------------------------------------- /Projects/SerialToLCD/SerialToLCD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/SerialToLCD.txt -------------------------------------------------------------------------------- /Projects/SerialToLCD/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/doxyfile -------------------------------------------------------------------------------- /Projects/SerialToLCD/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/SerialToLCD/makefile -------------------------------------------------------------------------------- /Projects/TempDataLogger/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Config/AppConfig.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Descriptors.c -------------------------------------------------------------------------------- /Projects/TempDataLogger/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Descriptors.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/RTC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/RTC.c -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/RTC.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/SCSI.c -------------------------------------------------------------------------------- /Projects/TempDataLogger/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/Lib/SCSI.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/TempDataLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/TempDataLogger.c -------------------------------------------------------------------------------- /Projects/TempDataLogger/TempDataLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/TempDataLogger.h -------------------------------------------------------------------------------- /Projects/TempDataLogger/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/doxyfile -------------------------------------------------------------------------------- /Projects/TempDataLogger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/TempDataLogger/makefile -------------------------------------------------------------------------------- /Projects/USBtoSerial/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/USBtoSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/Descriptors.c -------------------------------------------------------------------------------- /Projects/USBtoSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/Descriptors.h -------------------------------------------------------------------------------- /Projects/USBtoSerial/LUFA USBtoSerial.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/LUFA USBtoSerial.inf -------------------------------------------------------------------------------- /Projects/USBtoSerial/USBtoSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/USBtoSerial.c -------------------------------------------------------------------------------- /Projects/USBtoSerial/USBtoSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/USBtoSerial.h -------------------------------------------------------------------------------- /Projects/USBtoSerial/USBtoSerial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/USBtoSerial.txt -------------------------------------------------------------------------------- /Projects/USBtoSerial/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/doxyfile -------------------------------------------------------------------------------- /Projects/USBtoSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/USBtoSerial/makefile -------------------------------------------------------------------------------- /Projects/Webserver/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Config/AppConfig.h -------------------------------------------------------------------------------- /Projects/Webserver/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/Webserver/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Descriptors.c -------------------------------------------------------------------------------- /Projects/Webserver/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Descriptors.h -------------------------------------------------------------------------------- /Projects/Webserver/LUFA Webserver RNDIS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/LUFA Webserver RNDIS.inf -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DHCPClientApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DHCPClientApp.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DHCPClientApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DHCPClientApp.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DHCPCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DHCPCommon.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DHCPCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DHCPCommon.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DHCPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DHCPServerApp.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DHCPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DHCPServerApp.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DataflashManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DataflashManager.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/DataflashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/DataflashManager.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/FATFs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/FATFs/00readme.txt -------------------------------------------------------------------------------- /Projects/Webserver/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/HTTPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/HTTPServerApp.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/HTTPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/HTTPServerApp.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/SCSI.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/SCSI.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/TELNETServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/TELNETServerApp.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/TELNETServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/TELNETServerApp.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uIPManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uIPManagement.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uIPManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uIPManagement.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/clock.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/clock.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/timer.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/timer.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/uip-split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/uip-split.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/uip-split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/uip-split.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/uip.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/uip.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/uip_arp.c -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/uip_arp.h -------------------------------------------------------------------------------- /Projects/Webserver/Lib/uip/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Lib/uip/uipopt.h -------------------------------------------------------------------------------- /Projects/Webserver/USBDeviceMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/USBDeviceMode.c -------------------------------------------------------------------------------- /Projects/Webserver/USBDeviceMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/USBDeviceMode.h -------------------------------------------------------------------------------- /Projects/Webserver/USBHostMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/USBHostMode.c -------------------------------------------------------------------------------- /Projects/Webserver/USBHostMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/USBHostMode.h -------------------------------------------------------------------------------- /Projects/Webserver/Webserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Webserver.c -------------------------------------------------------------------------------- /Projects/Webserver/Webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Webserver.h -------------------------------------------------------------------------------- /Projects/Webserver/Webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/Webserver.txt -------------------------------------------------------------------------------- /Projects/Webserver/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/doxyfile -------------------------------------------------------------------------------- /Projects/Webserver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/Webserver/makefile -------------------------------------------------------------------------------- /Projects/XPLAINBridge/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/Config/AppConfig.h -------------------------------------------------------------------------------- /Projects/XPLAINBridge/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf -------------------------------------------------------------------------------- /Projects/XPLAINBridge/Lib/SoftUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/Lib/SoftUART.c -------------------------------------------------------------------------------- /Projects/XPLAINBridge/Lib/SoftUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/Lib/SoftUART.h -------------------------------------------------------------------------------- /Projects/XPLAINBridge/USARTDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/USARTDescriptors.c -------------------------------------------------------------------------------- /Projects/XPLAINBridge/USARTDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/USARTDescriptors.h -------------------------------------------------------------------------------- /Projects/XPLAINBridge/XPLAINBridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/XPLAINBridge.c -------------------------------------------------------------------------------- /Projects/XPLAINBridge/XPLAINBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/XPLAINBridge.h -------------------------------------------------------------------------------- /Projects/XPLAINBridge/XPLAINBridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/XPLAINBridge.txt -------------------------------------------------------------------------------- /Projects/XPLAINBridge/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/doxyfile -------------------------------------------------------------------------------- /Projects/XPLAINBridge/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/XPLAINBridge/makefile -------------------------------------------------------------------------------- /Projects/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/Projects/makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/README.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcminiuser/lufa/HEAD/makefile --------------------------------------------------------------------------------