├── PCB ├── README.md ├── breakout_r2 │ ├── xmegatest-B.Cu.gbr │ ├── xmegatest-B.Mask.gbr │ ├── xmegatest-B.SilkS.gbr │ ├── xmegatest-Edge.Cuts.gbr │ ├── xmegatest-F.Cu.gbr │ ├── xmegatest-F.Mask.gbr │ ├── xmegatest-F.SilkS.gbr │ ├── xmegatest-NPTH.drl │ └── xmegatest-PTH.drl ├── horrorscope_r3b │ ├── xmegatest-B.Cu.gbr │ ├── xmegatest-B.Mask.gbr │ ├── xmegatest-B.Paste.gbr │ ├── xmegatest-B.SilkS.gbr │ ├── xmegatest-Edge.Cuts.gbr │ ├── xmegatest-F.Cu.gbr │ ├── xmegatest-F.Mask.gbr │ ├── xmegatest-F.Paste.gbr │ ├── xmegatest-F.SilkS.gbr │ ├── xmegatest-NPTH.drl │ └── xmegatest-PTH.drl ├── xmegatest.kicad_pcb ├── xmegatest.net ├── xmegatest.pro └── xmegatest.sch ├── README.md ├── acq ├── Trace.py ├── TraceView.py ├── gui.py ├── runSetup.py ├── runTarget.py └── scope.py ├── fi ├── README ├── parseLog.py ├── plotLog.py ├── runSetup.py ├── runTest.py └── scope.py ├── julia └── Nano.ipynb ├── presentation ├── Excercises-sat1342.pdf └── TROOPERS-ngi-2019-presented.pdf ├── scope └── lufa-LUFA-170418 │ ├── .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 │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── DFU │ │ ├── BootloaderAPI.c │ │ ├── BootloaderAPI.h │ │ ├── BootloaderAPITable.S │ │ ├── BootloaderDFU.c │ │ ├── BootloaderDFU.h │ │ ├── BootloaderDFU.txt │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── asf.xml │ │ ├── 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 │ │ ├── asf.xml │ │ ├── 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 │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── Printer │ │ ├── BootloaderAPI.c │ │ ├── BootloaderAPI.h │ │ ├── BootloaderAPITable.S │ │ ├── BootloaderPrinter.c │ │ ├── BootloaderPrinter.h │ │ ├── BootloaderPrinter.txt │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── asf.xml │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── AudioOutput │ │ │ │ ├── AudioOutput.c │ │ │ │ ├── AudioOutput.h │ │ │ │ ├── AudioOutput.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── DualMIDI │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── DualMIDI.c │ │ │ │ ├── DualMIDI.h │ │ │ │ ├── DualMIDI.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── DualVirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── DualVirtualSerial.c │ │ │ │ ├── DualVirtualSerial.h │ │ │ │ ├── DualVirtualSerial.txt │ │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── GenericHID │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── GenericHID.c │ │ │ │ ├── GenericHID.h │ │ │ │ ├── GenericHID.txt │ │ │ │ ├── HostTestApp │ │ │ │ │ ├── test_generic_hid_libusb.py │ │ │ │ │ └── test_generic_hid_winusb.py │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── Joystick │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Joystick.c │ │ │ │ ├── Joystick.h │ │ │ │ ├── Joystick.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── Keyboard │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Keyboard.c │ │ │ │ ├── Keyboard.h │ │ │ │ ├── Keyboard.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── KeyboardMouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── KeyboardMouse.c │ │ │ │ ├── KeyboardMouse.h │ │ │ │ ├── KeyboardMouse.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── KeyboardMouseMultiReport │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── KeyboardMouseMultiReport.c │ │ │ │ ├── KeyboardMouseMultiReport.h │ │ │ │ ├── KeyboardMouseMultiReport.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MIDI │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── MIDI.c │ │ │ │ ├── MIDI.h │ │ │ │ ├── MIDI.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── Mouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Mouse.c │ │ │ │ ├── Mouse.h │ │ │ │ ├── Mouse.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── RNDISEthernet │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── LUFA RNDIS.inf │ │ │ │ ├── Lib │ │ │ │ │ ├── ARP.c │ │ │ │ │ ├── ARP.h │ │ │ │ │ ├── DHCP.c │ │ │ │ │ ├── DHCP.h │ │ │ │ │ ├── Ethernet.c │ │ │ │ │ ├── Ethernet.h │ │ │ │ │ ├── EthernetProtocols.h │ │ │ │ │ ├── ICMP.c │ │ │ │ │ ├── ICMP.h │ │ │ │ │ ├── IP.c │ │ │ │ │ ├── IP.h │ │ │ │ │ ├── ProtocolDecoders.c │ │ │ │ │ ├── ProtocolDecoders.h │ │ │ │ │ ├── TCP.c │ │ │ │ │ ├── TCP.h │ │ │ │ │ ├── UDP.c │ │ │ │ │ ├── UDP.h │ │ │ │ │ ├── Webserver.c │ │ │ │ │ └── Webserver.h │ │ │ │ ├── RNDISEthernet.c │ │ │ │ ├── RNDISEthernet.h │ │ │ │ ├── RNDISEthernet.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── VirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── LUFA VirtualSerial.inf │ │ │ │ ├── VirtualSerial.c │ │ │ │ ├── VirtualSerial.h │ │ │ │ ├── VirtualSerial.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── VirtualSerialMouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── LUFA VirtualSerialMouse.inf │ │ │ │ ├── VirtualSerialMouse.c │ │ │ │ ├── VirtualSerialMouse.h │ │ │ │ ├── VirtualSerialMouse.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── AudioOutput │ │ │ │ ├── AudioOutput.c │ │ │ │ ├── AudioOutput.h │ │ │ │ ├── AudioOutput.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── DualVirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── DualVirtualSerial.c │ │ │ │ ├── DualVirtualSerial.h │ │ │ │ ├── DualVirtualSerial.txt │ │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── GenericHID │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── GenericHID.c │ │ │ │ ├── GenericHID.h │ │ │ │ ├── GenericHID.txt │ │ │ │ ├── HostTestApp │ │ │ │ │ └── test_generic_hid.py │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── Joystick │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Joystick.c │ │ │ │ ├── Joystick.h │ │ │ │ ├── Joystick.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── Keyboard │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Keyboard.c │ │ │ │ ├── Keyboard.h │ │ │ │ ├── Keyboard.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── KeyboardMouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── KeyboardMouse.c │ │ │ │ ├── KeyboardMouse.h │ │ │ │ ├── KeyboardMouse.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MIDI │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── MIDI.c │ │ │ │ ├── MIDI.h │ │ │ │ ├── MIDI.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── Mouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Mouse.c │ │ │ │ ├── Mouse.h │ │ │ │ ├── Mouse.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── RNDISEthernet │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── LUFA RNDIS.inf │ │ │ │ ├── Lib │ │ │ │ │ ├── ARP.c │ │ │ │ │ ├── ARP.h │ │ │ │ │ ├── DHCP.c │ │ │ │ │ ├── DHCP.h │ │ │ │ │ ├── Ethernet.c │ │ │ │ │ ├── Ethernet.h │ │ │ │ │ ├── EthernetProtocols.h │ │ │ │ │ ├── ICMP.c │ │ │ │ │ ├── ICMP.h │ │ │ │ │ ├── IP.c │ │ │ │ │ ├── IP.h │ │ │ │ │ ├── ProtocolDecoders.c │ │ │ │ │ ├── ProtocolDecoders.h │ │ │ │ │ ├── RNDIS.c │ │ │ │ │ ├── RNDIS.h │ │ │ │ │ ├── TCP.c │ │ │ │ │ ├── TCP.h │ │ │ │ │ ├── UDP.c │ │ │ │ │ ├── UDP.h │ │ │ │ │ ├── Webserver.c │ │ │ │ │ └── Webserver.h │ │ │ │ ├── RNDISEthernet.c │ │ │ │ ├── RNDISEthernet.h │ │ │ │ ├── RNDISEthernet.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── VirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── LUFA VirtualSerial.inf │ │ │ │ ├── VirtualSerial.c │ │ │ │ ├── VirtualSerial.h │ │ │ │ ├── VirtualSerial.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ └── makefile │ │ └── makefile │ ├── Host │ │ ├── ClassDriver │ │ │ ├── AndroidAccessoryHost │ │ │ │ ├── AndroidAccessoryHost.c │ │ │ │ ├── AndroidAccessoryHost.h │ │ │ │ ├── AndroidAccessoryHost.txt │ │ │ │ ├── AndroidHostApp │ │ │ │ │ └── AndroidHostApp.zip │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── AudioInputHost │ │ │ │ ├── AudioInputHost.c │ │ │ │ ├── AudioInputHost.h │ │ │ │ ├── AudioInputHost.txt │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── AudioOutputHost │ │ │ │ ├── AudioOutputHost.c │ │ │ │ ├── AudioOutputHost.h │ │ │ │ ├── AudioOutputHost.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── JoystickHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── JoystickHostWithParser.c │ │ │ │ ├── JoystickHostWithParser.h │ │ │ │ ├── JoystickHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── KeyboardHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── KeyboardHost.c │ │ │ │ ├── KeyboardHost.h │ │ │ │ ├── KeyboardHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── KeyboardHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── KeyboardHostWithParser.c │ │ │ │ ├── KeyboardHostWithParser.h │ │ │ │ ├── KeyboardHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MIDIHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── MIDIHost.c │ │ │ │ ├── MIDIHost.h │ │ │ │ ├── MIDIHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MassStorageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── MassStorageHost.c │ │ │ │ ├── MassStorageHost.h │ │ │ │ ├── MassStorageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MouseHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── MouseHost.c │ │ │ │ ├── MouseHost.h │ │ │ │ ├── MouseHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MouseHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── MouseHostWithParser.c │ │ │ │ ├── MouseHostWithParser.h │ │ │ │ ├── MouseHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── PrinterHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── PrinterHost.c │ │ │ │ ├── PrinterHost.h │ │ │ │ ├── PrinterHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── RNDISEthernetHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── RNDISEthernetHost.c │ │ │ │ ├── RNDISEthernetHost.h │ │ │ │ ├── RNDISEthernetHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── StillImageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── StillImageHost.c │ │ │ │ ├── StillImageHost.h │ │ │ │ ├── StillImageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── VirtualSerialHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── VirtualSerialHost.c │ │ │ │ ├── VirtualSerialHost.h │ │ │ │ ├── VirtualSerialHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── AudioInputHost │ │ │ │ ├── AudioInputHost.c │ │ │ │ ├── AudioInputHost.h │ │ │ │ ├── AudioInputHost.txt │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── AudioOutputHost │ │ │ │ ├── AudioOutputHost.c │ │ │ │ ├── AudioOutputHost.h │ │ │ │ ├── AudioOutputHost.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── GenericHIDHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── GenericHIDHost.c │ │ │ │ ├── GenericHIDHost.h │ │ │ │ ├── GenericHIDHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── JoystickHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── HIDReport.c │ │ │ │ ├── HIDReport.h │ │ │ │ ├── JoystickHostWithParser.c │ │ │ │ ├── JoystickHostWithParser.h │ │ │ │ ├── JoystickHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── KeyboardHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── KeyboardHost.c │ │ │ │ ├── KeyboardHost.h │ │ │ │ ├── KeyboardHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── KeyboardHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── HIDReport.c │ │ │ │ ├── HIDReport.h │ │ │ │ ├── KeyboardHostWithParser.c │ │ │ │ ├── KeyboardHostWithParser.h │ │ │ │ ├── KeyboardHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MIDIHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── MIDIHost.c │ │ │ │ ├── MIDIHost.h │ │ │ │ ├── MIDIHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MassStorageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Lib │ │ │ │ │ ├── MassStoreCommands.c │ │ │ │ │ └── MassStoreCommands.h │ │ │ │ ├── MassStorageHost.c │ │ │ │ ├── MassStorageHost.h │ │ │ │ ├── MassStorageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MouseHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── MouseHost.c │ │ │ │ ├── MouseHost.h │ │ │ │ ├── MouseHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── MouseHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── HIDReport.c │ │ │ │ ├── HIDReport.h │ │ │ │ ├── MouseHostWithParser.c │ │ │ │ ├── MouseHostWithParser.h │ │ │ │ ├── MouseHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── PrinterHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Lib │ │ │ │ │ ├── PrinterCommands.c │ │ │ │ │ └── PrinterCommands.h │ │ │ │ ├── PrinterHost.c │ │ │ │ ├── PrinterHost.h │ │ │ │ ├── PrinterHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── RNDISEthernetHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Lib │ │ │ │ │ ├── RNDISCommands.c │ │ │ │ │ └── RNDISCommands.h │ │ │ │ ├── RNDISEthernetHost.c │ │ │ │ ├── RNDISEthernetHost.h │ │ │ │ ├── RNDISHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── StillImageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Lib │ │ │ │ │ ├── PIMACodes.h │ │ │ │ │ ├── StillImageCommands.c │ │ │ │ │ └── StillImageCommands.h │ │ │ │ ├── StillImageHost.c │ │ │ │ ├── StillImageHost.h │ │ │ │ ├── StillImageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── doxyfile │ │ │ │ └── makefile │ │ │ ├── VirtualSerialHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── VirtualSerialHost.c │ │ │ │ ├── VirtualSerialHost.h │ │ │ │ ├── VirtualSerialHost.txt │ │ │ │ ├── asf.xml │ │ │ │ ├── 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 │ │ │ │ └── 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 │ │ │ └── asf.xml │ │ ├── DriverStubs │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── HostTemplate │ │ │ ├── HostApplication.c │ │ │ ├── HostApplication.h │ │ │ └── asf.xml │ │ ├── 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 │ │ │ ├── CDCClass.h │ │ │ ├── Common │ │ │ │ ├── AndroidAccessoryClassCommon.h │ │ │ │ ├── AudioClassCommon.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 │ │ │ │ ├── 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 │ ├── StudioIntegration │ │ ├── Docbook │ │ │ ├── mshelp │ │ │ │ ├── README.txt │ │ │ │ ├── docbook.xsl │ │ │ │ └── hv1-common.xsl │ │ │ └── placeholder.txt │ │ ├── HV1 │ │ │ ├── helpcontentsetup.msha │ │ │ ├── lufa_docbook_transform.xslt │ │ │ ├── lufa_helpcontentsetup_transform.xslt │ │ │ ├── lufa_hv1_transform.xslt │ │ │ └── lufa_studio_help_styling.css │ │ ├── VSIX │ │ │ ├── LUFA.dll │ │ │ ├── LUFA.pkgdef │ │ │ ├── [Content_Types].xml │ │ │ ├── asf-manifest.xml │ │ │ ├── extension.vsixmanifest │ │ │ ├── generate_caches.py │ │ │ ├── lufa_asfmanifest_transform.xslt │ │ │ └── lufa_vsmanifest_transform.xslt │ │ ├── XDK │ │ │ ├── lufa_extension_transform.xslt │ │ │ ├── lufa_filelist_transform.xslt │ │ │ ├── lufa_indent_transform.xslt │ │ │ └── lufa_module_transform.xslt │ │ ├── lufa.xml │ │ ├── lufa_common.xml │ │ ├── lufa_drivers_board.xml │ │ ├── lufa_drivers_board_names.xml │ │ ├── lufa_drivers_misc.xml │ │ ├── lufa_drivers_peripheral.xml │ │ ├── lufa_drivers_usb.xml │ │ ├── lufa_drivers_usb_class.xml │ │ ├── lufa_drivers_usb_class_android.xml │ │ ├── lufa_drivers_usb_class_audio.xml │ │ ├── lufa_drivers_usb_class_cdc.xml │ │ ├── lufa_drivers_usb_class_hid.xml │ │ ├── lufa_drivers_usb_class_midi.xml │ │ ├── lufa_drivers_usb_class_ms.xml │ │ ├── lufa_drivers_usb_class_printer.xml │ │ ├── lufa_drivers_usb_class_rndis.xml │ │ ├── lufa_drivers_usb_class_si.xml │ │ ├── lufa_drivers_usb_core.xml │ │ ├── lufa_drivers_usb_core_avr8.xml │ │ ├── lufa_drivers_usb_core_uc3.xml │ │ ├── lufa_drivers_usb_core_xmega.xml │ │ ├── lufa_platform.xml │ │ ├── lufa_platform_uc3.xml │ │ ├── lufa_platform_xmega.xml │ │ ├── lufa_toolchain.xml │ │ └── makefile │ ├── 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 │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── Benito │ │ ├── Benito.c │ │ ├── Benito.h │ │ ├── Benito.txt │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── LUFA Benito Programmer.inf │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── HIDReportViewer │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── HIDReportViewer.c │ │ ├── HIDReportViewer.h │ │ ├── HIDReportViewer.txt │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── HorrorScope │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── HorrorScope.c │ │ ├── LUFA USBtoSerial.inf │ │ ├── adc.c │ │ ├── adc.h │ │ ├── build.sh │ │ ├── dmaadc.c │ │ ├── dmaadc.h │ │ ├── hires_glitch.c │ │ ├── hires_glitch.h │ │ ├── makefile │ │ ├── runTest.py │ │ ├── trigger.c │ │ ├── trigger.h │ │ ├── usartx.c │ │ ├── usartx.h │ │ ├── usb_serial.c │ │ └── usb_serial.h │ ├── 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 │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── MIDIToneGenerator │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── MIDIToneGenerator.c │ │ ├── MIDIToneGenerator.h │ │ ├── MIDIToneGenerator.txt │ │ ├── asf.xml │ │ ├── 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 │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── MediaController │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── MediaController.c │ │ ├── MediaController.h │ │ ├── MediaController.txt │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── MissileLauncher │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── ConfigDescriptor.c │ │ ├── ConfigDescriptor.h │ │ ├── MissileLauncher.c │ │ ├── MissileLauncher.h │ │ ├── MissileLauncher.txt │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── RelayBoard │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── RelayBoard.c │ │ ├── RelayBoard.h │ │ ├── RelayBoard.txt │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── SerialToLCD │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── LUFA SerialToLCD.inf │ │ ├── Lib │ │ │ ├── HD44780.c │ │ │ └── HD44780.h │ │ ├── SerialToLCD.c │ │ ├── SerialToLCD.h │ │ ├── SerialToLCD.txt │ │ ├── asf.xml │ │ ├── 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 │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ ├── USBtoSerial │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── LUFA USBtoSerial.inf │ │ ├── USBtoSerial.c │ │ ├── USBtoSerial.h │ │ ├── USBtoSerial.txt │ │ ├── asf.xml │ │ ├── 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 │ │ ├── asf.xml │ │ ├── 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 │ │ ├── asf.xml │ │ ├── doxyfile │ │ └── makefile │ └── makefile │ ├── README.txt │ └── makefile └── toe-arduino ├── sketch_oct23a ├── NOTES.txt └── sketch_oct23a.ino └── sketch_slowAes ├── aes.c └── sketch_slowAes.ino /PCB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/README.md -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-B.Cu.gbr -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-B.Mask.gbr -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-B.SilkS.gbr -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-Edge.Cuts.gbr -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-F.Cu.gbr -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-F.Mask.gbr -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-F.SilkS.gbr -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-NPTH.drl -------------------------------------------------------------------------------- /PCB/breakout_r2/xmegatest-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/breakout_r2/xmegatest-PTH.drl -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-B.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-B.Cu.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-B.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-B.Mask.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-B.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-B.Paste.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-B.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-B.SilkS.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-Edge.Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-Edge.Cuts.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-F.Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-F.Cu.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-F.Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-F.Mask.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-F.Paste.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-F.SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-F.SilkS.gbr -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-NPTH.drl -------------------------------------------------------------------------------- /PCB/horrorscope_r3b/xmegatest-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/horrorscope_r3b/xmegatest-PTH.drl -------------------------------------------------------------------------------- /PCB/xmegatest.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/xmegatest.kicad_pcb -------------------------------------------------------------------------------- /PCB/xmegatest.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/xmegatest.net -------------------------------------------------------------------------------- /PCB/xmegatest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/xmegatest.pro -------------------------------------------------------------------------------- /PCB/xmegatest.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/PCB/xmegatest.sch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/README.md -------------------------------------------------------------------------------- /acq/Trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/acq/Trace.py -------------------------------------------------------------------------------- /acq/TraceView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/acq/TraceView.py -------------------------------------------------------------------------------- /acq/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/acq/gui.py -------------------------------------------------------------------------------- /acq/runSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/acq/runSetup.py -------------------------------------------------------------------------------- /acq/runTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/acq/runTarget.py -------------------------------------------------------------------------------- /acq/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/acq/scope.py -------------------------------------------------------------------------------- /fi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/fi/README -------------------------------------------------------------------------------- /fi/parseLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/fi/parseLog.py -------------------------------------------------------------------------------- /fi/plotLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/fi/plotLog.py -------------------------------------------------------------------------------- /fi/runSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/fi/runSetup.py -------------------------------------------------------------------------------- /fi/runTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/fi/runTest.py -------------------------------------------------------------------------------- /fi/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/fi/scope.py -------------------------------------------------------------------------------- /julia/Nano.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/julia/Nano.ipynb -------------------------------------------------------------------------------- /presentation/Excercises-sat1342.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/presentation/Excercises-sat1342.pdf -------------------------------------------------------------------------------- /presentation/TROOPERS-ngi-2019-presented.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/presentation/TROOPERS-ngi-2019-presented.pdf -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/.gitignore -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderAPI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderAPI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderAPITable.S -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderCDC.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderCDC.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderCDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/BootloaderCDC.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/LUFA CDC Bootloader.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/LUFA CDC Bootloader.inf -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/CDC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/CDC/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderAPI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderAPI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderAPITable.S -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/DFU/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/BootloaderHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/BootloaderHID.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/BootloaderHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/BootloaderHID.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/BootloaderHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/BootloaderHID.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/HostLoaderApp/.gitignore: -------------------------------------------------------------------------------- 1 | hid_bootloader_cli 2 | -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/HostLoaderApp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/HostLoaderApp/Makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/HostLoaderApp/Makefile.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/HostLoaderApp/Makefile.bsd -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/HostLoaderApp/gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/HostLoaderApp/gpl3.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/HID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/HID/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/BootloaderAPI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/BootloaderAPI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/VirtualFAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/VirtualFAT.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/VirtualFAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/Lib/VirtualFAT.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/MassStorage/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderAPI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderAPI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderAPITable.S -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderPrinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderPrinter.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderPrinter.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderPrinter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/BootloaderPrinter.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/Printer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/Printer/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Bootloaders/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Bootloaders/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Board/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/Test.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BoardDriverTest/makefile.test -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/BootloaderTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/BootloaderTest/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/ModuleTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/ModuleTest/Dummy.S -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/ModuleTest/Modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/ModuleTest/Modules.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/ModuleTest/Test_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/ModuleTest/Test_C.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/ModuleTest/Test_CPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/ModuleTest/Test_CPP.cpp -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/ModuleTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/ModuleTest/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/ModuleTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/ModuleTest/makefile.test -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/Dummy.S -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/Test.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/SingleUSBModeTest/makefile.test -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/StaticAnalysisTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/StaticAnalysisTest/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/BuildTests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/BuildTests/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/AudioInput/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/AudioInput/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/DualMIDI/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/DualMIDI/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/DualMIDI/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/DualMIDI/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/DualMIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/DualMIDI/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/GenericHID/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/GenericHID/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Joystick/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Joystick/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Joystick/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Joystick/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Joystick/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Keyboard/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Keyboard/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Keyboard/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Keyboard/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Keyboard/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/MIDI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/MIDI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/MIDI.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/MIDI/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/Mouse.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/Mouse.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/Mouse.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/Mouse/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/ClassDriver/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioInput/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioInput/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioInput/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioInput/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioInput/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioOutput/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioOutput/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioOutput/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioOutput/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/AudioOutput/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/BulkVendor/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/BulkVendor/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/BulkVendor/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/BulkVendor/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/BulkVendor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/BulkVendor/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/GenericHID/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/GenericHID/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/GenericHID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/GenericHID/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/GenericHID/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/Joystick.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/Joystick.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Joystick/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Keyboard/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/KeyboardMouse/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/KeyboardMouse/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/MIDI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/MIDI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/MIDI.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MIDI/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MassStorage/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MassStorage/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MassStorage/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MassStorage/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/MassStorage/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Mouse.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Mouse.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/Mouse.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/Mouse/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/RNDISEthernet/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/RNDISEthernet/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/VirtualSerial/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/VirtualSerial/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/LowLevel/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Device/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Device/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/DualRole/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/DualRole/ClassDriver/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/DualRole/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/DualRole/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/KeyboardHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/KeyboardHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MIDIHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MouseHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MouseHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MouseHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MouseHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/MouseHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/PrinterHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/PrinterHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/PrinterHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/PrinterHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/PrinterHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/ClassDriver/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioInputHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioInputHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioInputHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioInputHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioInputHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioInputHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioOutputHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/AudioOutputHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/GenericHIDHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/GenericHIDHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/GenericHIDHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/GenericHIDHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/GenericHIDHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/GenericHIDHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/KeyboardHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/KeyboardHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/KeyboardHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/KeyboardHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/KeyboardHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MIDIHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MassStorageHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MassStorageHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/MouseHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/PrinterHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/PrinterHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/PrinterHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/PrinterHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/PrinterHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/StillImageHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/StillImageHost/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/StillImageHost/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/StillImageHost/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/StillImageHost/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/LowLevel/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/Host/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/Host/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Demos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Demos/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/.gitignore -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/License.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/ModulesOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/ModulesOverview.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/atprogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/atprogram.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/atprogram.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/avrdude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/avrdude.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/avrdude.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/core.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/core.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/cppcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/cppcheck.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/cppcheck.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/dfu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/dfu.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/dfu.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/doxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/doxygen.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/doxygen.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/gcc.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/gcc.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/hid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/hid.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/DMBS/hid.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/Readme.md -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/Template/Template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/Template/Template.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/DMBS/Template/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/DMBS/Template/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/LUFA/lufa-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/LUFA/lufa-gcc.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/LUFA/lufa-sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/LUFA/lufa-sources.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_atprogram.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_avrdude.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_build.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_core.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_cppcheck.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_dfu.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_doxygen.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_hid.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Build/lufa_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Build/lufa_sources.mk -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/DeviceTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/DeviceTemplate/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/HostTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/HostTemplate/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/CodeTemplates/makefile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/CodeTemplates/makefile_template -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Common/ArchitectureSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Common/ArchitectureSpecific.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Common/Architectures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Common/Architectures.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Common/Common.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Common/CompilerSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Common/CompilerSpecific.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Common/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Common/Endianness.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/BuildSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/BuildSystem.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/ChangeLog.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/CompilingApps.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/DeviceSupport.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/Donating.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/FutureChanges.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/GettingStarted.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/Groups.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/Images/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/Images/Author.jpg -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/Images/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/Images/LUFA.png -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/Images/LUFA_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/Images/LUFA_thumb.png -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/KnownIssues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/KnownIssues.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/LibraryResources.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/LicenseInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/LicenseInfo.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/MainPage.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/MigrationInformation.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/OSDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/OSDrivers.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/Style/Footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/Style/Footer.htm -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/Style/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/Style/Style.css -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/DoxygenPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/DoxygenPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BENITO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BENITO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUI/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUI/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/CULV3/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/CULV3/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/DUCE/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/DUCE/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICRO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICRO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICRO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICRO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MULTIO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/POLOLUMICRO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/POLOLUMICRO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/POLOLUMICRO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/POLOLUMICRO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK525/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/STK526/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TEENSY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TEENSY/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TUL/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TUL/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TUL/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TUL/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TUL/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/TUL/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/U2S/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/U2S/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/U2S/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/U2S/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/U2S/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/U2S/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UDIP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UDIP/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UNO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UNO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UNO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/UNO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USB2AX/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USB2AX/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBFOO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBFOO/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/YUN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/YUN/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/YUN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/AVR8/YUN/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1104/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1104/Board.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Misc/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Misc/AT45DB321C.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Misc/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Misc/AT45DB642D.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Misc/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Misc/RingBuffer.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/SerialSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/SerialSPI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/AudioClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/CDCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/CDCClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Common/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Common/HIDParser.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Common/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Common/HIDParser.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/HIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/HIDClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/CDCClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/CDCClassHost.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/CDCClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/CDCClassHost.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/HIDClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/HIDClassHost.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/HIDClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/HIDClassHost.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/MIDIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/MIDIClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/MassStorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/MassStorageClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/PrinterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/PrinterClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/RNDISClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/RNDISClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/StillImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Class/StillImageClass.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Device.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Endpoint.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/EndpointStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/EndpointStream.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Events.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Events.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Host.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/HostStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/HostStandardReq.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/HostStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/HostStandardReq.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/OTG.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/Pipe.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/PipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/PipeStream.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/StdDescriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/StdRequestType.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Device_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Device_UC3.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Device_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Device_UC3.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Host_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Host_UC3.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Host_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Host_UC3.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBController.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBInterrupt.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBMode.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBTask.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/USBTask.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/License.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Platform/Platform.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Platform/UC3/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Platform/UC3/ClockManagement.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Platform/UC3/Exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Platform/UC3/Exception.S -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Platform/UC3/InterruptManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Platform/UC3/InterruptManagement.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Platform/UC3/InterruptManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Platform/UC3/InterruptManagement.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Platform/XMEGA/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Platform/XMEGA/ClockManagement.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/StudioIntegration/VSIX/LUFA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/StudioIntegration/VSIX/LUFA.dll -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/StudioIntegration/VSIX/LUFA.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/StudioIntegration/VSIX/LUFA.pkgdef -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/StudioIntegration/lufa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/StudioIntegration/lufa.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/StudioIntegration/lufa_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/StudioIntegration/lufa_common.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/StudioIntegration/lufa_platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/StudioIntegration/lufa_platform.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/StudioIntegration/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/StudioIntegration/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/Version.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/LUFA/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Maintenance/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Maintenance/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISP-MKII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISP-MKII.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISP-MKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISP-MKII.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISP-MKII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISP-MKII.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISPDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISPDescriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISPDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/AVRISPDescriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/V2Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/V2Protocol.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/V2Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/V2Protocol.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/AVRISP-MKII/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/AVRISP-MKII/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/Benito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/Benito.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/Benito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/Benito.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/Benito.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/Benito.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Benito/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Benito/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HIDReportViewer/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HIDReportViewer/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HIDReportViewer/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HIDReportViewer/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HIDReportViewer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HIDReportViewer/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/HorrorScope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/HorrorScope.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/adc.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/adc.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/build.sh -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/dmaadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/dmaadc.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/dmaadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/dmaadc.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/hires_glitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/hires_glitch.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/hires_glitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/hires_glitch.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/runTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/runTest.py -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/trigger.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/trigger.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/usartx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/usartx.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/usartx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/usartx.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/usb_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/usb_serial.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/HorrorScope/usb_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/HorrorScope/usb_serial.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/LEDNotifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/LEDNotifier.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/LEDNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/LEDNotifier.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/LEDNotifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/LEDNotifier.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/LEDNotifier/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/LEDNotifier/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MIDIToneGenerator/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Lib/MagstripeHW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Lib/MagstripeHW.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Magstripe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Magstripe.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Magstripe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Magstripe.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/Magstripe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/Magstripe.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Magstripe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Magstripe/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MediaController/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MediaController/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MediaController/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MediaController/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MediaController/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MediaController/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MediaController/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MediaController/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MediaController/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MediaController/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MissileLauncher/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MissileLauncher/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MissileLauncher/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MissileLauncher/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/MissileLauncher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/MissileLauncher/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/RelayBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/RelayBoard.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/RelayBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/RelayBoard.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/RelayBoard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/RelayBoard.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/RelayBoard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/RelayBoard/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/Lib/HD44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/Lib/HD44780.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/Lib/HD44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/Lib/HD44780.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/SerialToLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/SerialToLCD.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/SerialToLCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/SerialToLCD.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/SerialToLCD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/SerialToLCD.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/SerialToLCD/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/SerialToLCD/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/RTC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/RTC.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/RTC.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/SCSI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/Lib/SCSI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/TempDataLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/TempDataLogger.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/TempDataLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/TempDataLogger.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/TempDataLogger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/TempDataLogger/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/USBtoSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/USBtoSerial.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/USBtoSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/USBtoSerial.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/USBtoSerial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/USBtoSerial.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/USBtoSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/USBtoSerial/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Config/LUFAConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Descriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Descriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPClientApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPClientApp.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPClientApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPClientApp.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPCommon.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPCommon.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPServerApp.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/DHCPServerApp.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/HTTPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/HTTPServerApp.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/HTTPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/HTTPServerApp.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/SCSI.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/SCSI.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/TELNETServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/TELNETServerApp.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/TELNETServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/TELNETServerApp.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uIPManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uIPManagement.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uIPManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uIPManagement.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/clock.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/clock.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/timer.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/timer.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip-split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip-split.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip-split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip-split.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip_arp.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uip_arp.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Lib/uip/uipopt.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/USBDeviceMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/USBDeviceMode.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/USBDeviceMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/USBDeviceMode.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/USBHostMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/USBHostMode.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/USBHostMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/USBHostMode.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Webserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Webserver.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Webserver.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/Webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/Webserver.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/Webserver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/Webserver/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/Config/AppConfig.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/Lib/SoftUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/Lib/SoftUART.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/Lib/SoftUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/Lib/SoftUART.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/USARTDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/USARTDescriptors.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/USARTDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/USARTDescriptors.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/XPLAINBridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/XPLAINBridge.c -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/XPLAINBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/XPLAINBridge.h -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/XPLAINBridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/XPLAINBridge.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/asf.xml -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/doxyfile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/XPLAINBridge/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/XPLAINBridge/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/Projects/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/Projects/makefile -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/README.txt -------------------------------------------------------------------------------- /scope/lufa-LUFA-170418/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/scope/lufa-LUFA-170418/makefile -------------------------------------------------------------------------------- /toe-arduino/sketch_oct23a/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/toe-arduino/sketch_oct23a/NOTES.txt -------------------------------------------------------------------------------- /toe-arduino/sketch_oct23a/sketch_oct23a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/toe-arduino/sketch_oct23a/sketch_oct23a.ino -------------------------------------------------------------------------------- /toe-arduino/sketch_slowAes/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/toe-arduino/sketch_slowAes/aes.c -------------------------------------------------------------------------------- /toe-arduino/sketch_slowAes/sketch_slowAes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albert-spruyt/HorrorScope/HEAD/toe-arduino/sketch_slowAes/sketch_slowAes.ino --------------------------------------------------------------------------------