├── .gitignore ├── ExampleSketches ├── USBASCIITable │ └── USBASCIITable.ino └── USBSerialEcho │ └── USBSerialEcho.ino ├── LUFA-130303 ├── Bootloaders │ ├── CDC │ │ ├── BootloaderAPI.c │ │ ├── BootloaderAPI.h │ │ ├── BootloaderAPITable.S │ │ ├── BootloaderCDC.c │ │ ├── BootloaderCDC.h │ │ ├── BootloaderCDC.txt │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── LUFA CDC Bootloader.inf │ │ └── makefile │ ├── DFU │ │ ├── BootloaderAPI.c │ │ ├── BootloaderAPI.h │ │ ├── BootloaderAPITable.S │ │ ├── BootloaderDFU.c │ │ ├── BootloaderDFU.h │ │ ├── BootloaderDFU.txt │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ └── makefile │ ├── HID │ │ ├── BootloaderHID.c │ │ ├── BootloaderHID.h │ │ ├── BootloaderHID.txt │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── HostLoaderApp │ │ │ ├── Makefile │ │ │ ├── Makefile.bsd │ │ │ ├── gpl3.txt │ │ │ └── hid_bootloader_cli.c │ │ └── 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 │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── AudioOutput │ │ │ │ ├── AudioOutput.c │ │ │ │ ├── AudioOutput.h │ │ │ │ ├── AudioOutput.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── DualVirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── DualVirtualSerial.c │ │ │ │ ├── DualVirtualSerial.h │ │ │ │ ├── DualVirtualSerial.txt │ │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── GenericHID │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── GenericHID.c │ │ │ │ ├── GenericHID.h │ │ │ │ ├── GenericHID.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── Joystick │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Joystick.c │ │ │ │ ├── Joystick.h │ │ │ │ ├── Joystick.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── Keyboard │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Keyboard.c │ │ │ │ ├── Keyboard.h │ │ │ │ ├── Keyboard.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── KeyboardMouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── KeyboardMouse.c │ │ │ │ ├── KeyboardMouse.h │ │ │ │ ├── KeyboardMouse.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── KeyboardMouseMultiReport │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── KeyboardMouseMultiReport.c │ │ │ │ ├── KeyboardMouseMultiReport.h │ │ │ │ ├── KeyboardMouseMultiReport.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MIDI │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MIDI.c │ │ │ │ ├── MIDI.h │ │ │ │ ├── MIDI.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MassStorage │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── DataflashManager.c │ │ │ │ │ ├── DataflashManager.h │ │ │ │ │ ├── SCSI.c │ │ │ │ │ └── SCSI.h │ │ │ │ ├── MassStorage.c │ │ │ │ ├── MassStorage.h │ │ │ │ ├── MassStorage.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MassStorageKeyboard │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── DataflashManager.c │ │ │ │ │ ├── DataflashManager.h │ │ │ │ │ ├── SCSI.c │ │ │ │ │ └── SCSI.h │ │ │ │ ├── MassStorageKeyboard.c │ │ │ │ ├── MassStorageKeyboard.h │ │ │ │ ├── MassStorageKeyboard.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── Mouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Mouse.c │ │ │ │ ├── Mouse.h │ │ │ │ ├── Mouse.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── RNDISEthernet │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── 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 │ │ │ │ └── makefile │ │ │ ├── VirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── LUFA VirtualSerial.inf │ │ │ │ ├── VirtualSerial.c │ │ │ │ ├── VirtualSerial.h │ │ │ │ ├── VirtualSerial.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── VirtualSerialMassStorage │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── LUFA VirtualSerialMassStorage.inf │ │ │ │ ├── Lib │ │ │ │ │ ├── DataflashManager.c │ │ │ │ │ ├── DataflashManager.h │ │ │ │ │ ├── SCSI.c │ │ │ │ │ └── SCSI.h │ │ │ │ ├── VirtualSerialMassStorage.c │ │ │ │ ├── VirtualSerialMassStorage.h │ │ │ │ ├── VirtualSerialMassStorage.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── VirtualSerialMouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── LUFA VirtualSerialMouse.inf │ │ │ │ ├── VirtualSerialMouse.c │ │ │ │ ├── VirtualSerialMouse.h │ │ │ │ ├── VirtualSerialMouse.txt │ │ │ │ ├── asf.xml │ │ │ │ └── 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 │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── AudioOutput │ │ │ │ ├── AudioOutput.c │ │ │ │ ├── AudioOutput.h │ │ │ │ ├── AudioOutput.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── DualVirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── DualVirtualSerial.c │ │ │ │ ├── DualVirtualSerial.h │ │ │ │ ├── DualVirtualSerial.txt │ │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── GenericHID │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── GenericHID.c │ │ │ │ ├── GenericHID.h │ │ │ │ ├── GenericHID.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── Joystick │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Joystick.c │ │ │ │ ├── Joystick.h │ │ │ │ ├── Joystick.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── Keyboard │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Keyboard.c │ │ │ │ ├── Keyboard.h │ │ │ │ ├── Keyboard.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── KeyboardMouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── KeyboardMouse.c │ │ │ │ ├── KeyboardMouse.h │ │ │ │ ├── KeyboardMouse.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MIDI │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MIDI.c │ │ │ │ ├── MIDI.h │ │ │ │ ├── MIDI.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MassStorage │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── DataflashManager.c │ │ │ │ │ ├── DataflashManager.h │ │ │ │ │ ├── SCSI.c │ │ │ │ │ └── SCSI.h │ │ │ │ ├── MassStorage.c │ │ │ │ ├── MassStorage.h │ │ │ │ ├── MassStorage.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── Mouse │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Mouse.c │ │ │ │ ├── Mouse.h │ │ │ │ ├── Mouse.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── RNDISEthernet │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── 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 │ │ │ │ └── makefile │ │ │ ├── VirtualSerial │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── LUFA VirtualSerial.inf │ │ │ │ ├── VirtualSerial.c │ │ │ │ ├── VirtualSerial.h │ │ │ │ ├── VirtualSerial.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ └── makefile │ │ └── makefile │ ├── DualRole │ │ ├── ClassDriver │ │ │ ├── MouseHostDevice │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Descriptors.c │ │ │ │ ├── Descriptors.h │ │ │ │ ├── DeviceFunctions.c │ │ │ │ ├── DeviceFunctions.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── HostFunctions.c │ │ │ │ ├── HostFunctions.h │ │ │ │ ├── MouseHostDevice.c │ │ │ │ ├── MouseHostDevice.h │ │ │ │ ├── MouseHostDevice.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ └── makefile │ │ └── makefile │ ├── Host │ │ ├── ClassDriver │ │ │ ├── AndroidAccessoryHost │ │ │ │ ├── AndroidAccessoryHost.c │ │ │ │ ├── AndroidAccessoryHost.h │ │ │ │ ├── AndroidAccessoryHost.txt │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── AudioInputHost │ │ │ │ ├── AudioInputHost.c │ │ │ │ ├── AudioInputHost.h │ │ │ │ ├── AudioInputHost.txt │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── AudioOutputHost │ │ │ │ ├── AudioOutputHost.c │ │ │ │ ├── AudioOutputHost.h │ │ │ │ ├── AudioOutputHost.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── JoystickHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── JoystickHostWithParser.c │ │ │ │ ├── JoystickHostWithParser.h │ │ │ │ ├── JoystickHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── KeyboardHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── KeyboardHost.c │ │ │ │ ├── KeyboardHost.h │ │ │ │ ├── KeyboardHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── KeyboardHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── KeyboardHostWithParser.c │ │ │ │ ├── KeyboardHostWithParser.h │ │ │ │ ├── KeyboardHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MIDIHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MIDIHost.c │ │ │ │ ├── MIDIHost.h │ │ │ │ ├── MIDIHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MassStorageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MassStorageHost.c │ │ │ │ ├── MassStorageHost.h │ │ │ │ ├── MassStorageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MouseHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MouseHost.c │ │ │ │ ├── MouseHost.h │ │ │ │ ├── MouseHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MouseHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MouseHostWithParser.c │ │ │ │ ├── MouseHostWithParser.h │ │ │ │ ├── MouseHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── PrinterHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── PrinterHost.c │ │ │ │ ├── PrinterHost.h │ │ │ │ ├── PrinterHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── RNDISEthernetHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── RNDISEthernetHost.c │ │ │ │ ├── RNDISEthernetHost.h │ │ │ │ ├── RNDISEthernetHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── StillImageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── StillImageHost.c │ │ │ │ ├── StillImageHost.h │ │ │ │ ├── StillImageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── VirtualSerialHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── VirtualSerialHost.c │ │ │ │ ├── VirtualSerialHost.h │ │ │ │ ├── VirtualSerialHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ └── makefile │ │ ├── LowLevel │ │ │ ├── AndroidAccessoryHost │ │ │ │ ├── AndroidAccessoryHost.c │ │ │ │ ├── AndroidAccessoryHost.h │ │ │ │ ├── AndroidAccessoryHost.txt │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── DeviceDescriptor.c │ │ │ │ ├── DeviceDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── AndroidAccessoryCommands.c │ │ │ │ │ └── AndroidAccessoryCommands.h │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── AudioInputHost │ │ │ │ ├── AudioInputHost.c │ │ │ │ ├── AudioInputHost.h │ │ │ │ ├── AudioInputHost.txt │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── AudioOutputHost │ │ │ │ ├── AudioOutputHost.c │ │ │ │ ├── AudioOutputHost.h │ │ │ │ ├── AudioOutputHost.txt │ │ │ │ ├── Config │ │ │ │ │ ├── AppConfig.h │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── GenericHIDHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── GenericHIDHost.c │ │ │ │ ├── GenericHIDHost.h │ │ │ │ ├── GenericHIDHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── JoystickHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── HIDReport.c │ │ │ │ ├── HIDReport.h │ │ │ │ ├── JoystickHostWithParser.c │ │ │ │ ├── JoystickHostWithParser.h │ │ │ │ ├── JoystickHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── KeyboardHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── KeyboardHost.c │ │ │ │ ├── KeyboardHost.h │ │ │ │ ├── KeyboardHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── KeyboardHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── HIDReport.c │ │ │ │ ├── HIDReport.h │ │ │ │ ├── KeyboardHostWithParser.c │ │ │ │ ├── KeyboardHostWithParser.h │ │ │ │ ├── KeyboardHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MIDIHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MIDIHost.c │ │ │ │ ├── MIDIHost.h │ │ │ │ ├── MIDIHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MassStorageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── MassStoreCommands.c │ │ │ │ │ └── MassStoreCommands.h │ │ │ │ ├── MassStorageHost.c │ │ │ │ ├── MassStorageHost.h │ │ │ │ ├── MassStorageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MouseHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── MouseHost.c │ │ │ │ ├── MouseHost.h │ │ │ │ ├── MouseHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── MouseHostWithParser │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── HIDReport.c │ │ │ │ ├── HIDReport.h │ │ │ │ ├── MouseHostWithParser.c │ │ │ │ ├── MouseHostWithParser.h │ │ │ │ ├── MouseHostWithParser.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── PrinterHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── PrinterCommands.c │ │ │ │ │ └── PrinterCommands.h │ │ │ │ ├── PrinterHost.c │ │ │ │ ├── PrinterHost.h │ │ │ │ ├── PrinterHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── RNDISEthernetHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── RNDISCommands.c │ │ │ │ │ └── RNDISCommands.h │ │ │ │ ├── RNDISEthernetHost.c │ │ │ │ ├── RNDISEthernetHost.h │ │ │ │ ├── RNDISHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── StillImageHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── Lib │ │ │ │ │ ├── PIMACodes.h │ │ │ │ │ ├── StillImageCommands.c │ │ │ │ │ └── StillImageCommands.h │ │ │ │ ├── StillImageHost.c │ │ │ │ ├── StillImageHost.h │ │ │ │ ├── StillImageHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ ├── VirtualSerialHost │ │ │ │ ├── Config │ │ │ │ │ └── LUFAConfig.h │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Doxygen.conf │ │ │ │ ├── VirtualSerialHost.c │ │ │ │ ├── VirtualSerialHost.h │ │ │ │ ├── VirtualSerialHost.txt │ │ │ │ ├── asf.xml │ │ │ │ └── makefile │ │ │ └── makefile │ │ └── makefile │ └── makefile ├── LUFA.pnproj ├── LUFA │ ├── Build │ │ ├── HID_EEPROM_Loader │ │ │ ├── HID_EEPROM_Loader.c │ │ │ └── makefile │ │ ├── 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 │ │ └── makefile_template │ ├── Common │ │ ├── ArchitectureSpecific.h │ │ ├── Architectures.h │ │ ├── Attributes.h │ │ ├── BoardTypes.h │ │ ├── Common.h │ │ ├── CompilerSpecific.h │ │ └── Endianness.h │ ├── Doxygen.conf │ ├── DoxygenPages │ │ ├── BuildSystem.txt │ │ ├── BuildingLinkableLibraries.txt │ │ ├── ChangeLog.txt │ │ ├── CompileTimeTokens.txt │ │ ├── CompilingApps.txt │ │ ├── ConfiguringApps.txt │ │ ├── DevelopingWithLUFA.txt │ │ ├── DeviceSupport.txt │ │ ├── DirectorySummaries.txt │ │ ├── Donating.txt │ │ ├── ExportingLibrary.txt │ │ ├── FutureChanges.txt │ │ ├── GettingStarted.txt │ │ ├── Groups.txt │ │ ├── Images │ │ │ ├── AS5_AS6_Import │ │ │ │ ├── AS5_AS6_Import_Step1.png │ │ │ │ ├── AS5_AS6_Import_Step2.png │ │ │ │ ├── AS5_AS6_Import_Step3.png │ │ │ │ ├── AS5_AS6_Import_Step4.png │ │ │ │ ├── AS5_AS6_Import_Step5_1.png │ │ │ │ ├── AS5_AS6_Import_Step5_2.png │ │ │ │ └── AS5_AS6_Import_Step5_3.png │ │ │ ├── Author.jpg │ │ │ ├── LUFA.png │ │ │ └── LUFA_thumb.png │ │ ├── KnownIssues.txt │ │ ├── LUFAPoweredProjects.txt │ │ ├── LibraryResources.txt │ │ ├── LicenseInfo.txt │ │ ├── MainPage.txt │ │ ├── MigrationInformation.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ └── 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 │ │ │ │ ├── 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 │ │ └── XMEGA │ │ │ └── ClockManagement.h │ ├── StudioIntegration │ │ ├── ProjectGenerator │ │ │ └── placeholder.txt │ │ ├── VSIX │ │ │ ├── [Content_Types].xml │ │ │ ├── asf-manifest.xml │ │ │ └── extension.vsixmanifest │ │ ├── XSLT │ │ │ ├── lufa_asfmanifest_transform.xslt │ │ │ ├── lufa_extension_transform.xslt │ │ │ ├── lufa_filelist_transform.xslt │ │ │ ├── lufa_indent_transform.xslt │ │ │ ├── lufa_module_transform.xslt │ │ │ └── lufa_vsmanifest_transform.xslt │ │ ├── generate_caches.py │ │ ├── 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_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 │ └── makefile ├── Maintenance │ └── makefile ├── Projects │ ├── AVRISP-MKII │ │ ├── AVRISP-MKII.c │ │ ├── AVRISP-MKII.h │ │ ├── AVRISP-MKII.txt │ │ ├── AVRISPDescriptors.c │ │ ├── AVRISPDescriptors.h │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Doxygen.conf │ │ ├── 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 │ │ ├── asf.xml │ │ └── makefile │ ├── Benito │ │ ├── Benito Programmer.inf │ │ ├── Benito.c │ │ ├── Benito.h │ │ ├── Benito.txt │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── asf.xml │ │ └── makefile │ ├── HIDReportViewer │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Doxygen.conf │ │ ├── HIDReportViewer.c │ │ ├── HIDReportViewer.h │ │ ├── HIDReportViewer.txt │ │ ├── asf.xml │ │ └── makefile │ ├── LEDNotifier │ │ ├── CPUUsageApp │ │ │ ├── CPUMonitor.Designer.cs │ │ │ ├── CPUMonitor.cs │ │ │ ├── CPUMonitor.csproj │ │ │ ├── CPUMonitor.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── HotmailNotifierApp │ │ │ ├── MailNotifier.Designer.cs │ │ │ ├── MailNotifier.cs │ │ │ ├── MailNotifier.csproj │ │ │ ├── MailNotifier.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── 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 │ │ └── makefile │ ├── MIDIToneGenerator │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── MIDIToneGenerator.c │ │ ├── MIDIToneGenerator.h │ │ ├── MIDIToneGenerator.txt │ │ ├── asf.xml │ │ └── makefile │ ├── Magstripe │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── Lib │ │ │ ├── CircularBitBuffer.c │ │ │ ├── CircularBitBuffer.h │ │ │ └── MagstripeHW.h │ │ ├── Magstripe.c │ │ ├── Magstripe.h │ │ ├── Magstripe.txt │ │ ├── asf.xml │ │ └── makefile │ ├── MediaController │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── MediaController.c │ │ ├── MediaController.h │ │ ├── MediaController.txt │ │ ├── asf.xml │ │ └── makefile │ ├── MissileLauncher │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── ConfigDescriptor.c │ │ ├── ConfigDescriptor.h │ │ ├── Doxygen.conf │ │ ├── MissileLauncher.c │ │ ├── MissileLauncher.h │ │ ├── MissileLauncher.txt │ │ ├── asf.xml │ │ └── makefile │ ├── RelayBoard │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── RelayBoard.c │ │ ├── RelayBoard.h │ │ ├── RelayBoard.txt │ │ ├── asf.xml │ │ └── makefile │ ├── SerialToLCD │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── Lib │ │ │ ├── HD44780.c │ │ │ └── HD44780.h │ │ ├── SerialToLCD.c │ │ ├── SerialToLCD.h │ │ ├── SerialToLCD.txt │ │ ├── asf.xml │ │ └── makefile │ ├── TempDataLogger │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── Lib │ │ │ ├── DS1307.c │ │ │ ├── DS1307.h │ │ │ ├── DataflashManager.c │ │ │ ├── DataflashManager.h │ │ │ ├── FATFs │ │ │ │ ├── 00readme.txt │ │ │ │ ├── diskio.c │ │ │ │ ├── diskio.h │ │ │ │ ├── ff.c │ │ │ │ ├── ff.h │ │ │ │ ├── ffconf.h │ │ │ │ └── integer.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 │ │ ├── TemperatureDataLogger.txt │ │ ├── asf.xml │ │ └── makefile │ ├── USBtoSerial │ │ ├── Config │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── LUFA USBtoSerial.inf │ │ ├── USBtoSerial.c │ │ ├── USBtoSerial.h │ │ ├── USBtoSerial.txt │ │ ├── asf.xml │ │ └── makefile │ ├── Webserver │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── 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 │ │ └── makefile │ ├── XPLAINBridge │ │ ├── Config │ │ │ ├── AppConfig.h │ │ │ └── LUFAConfig.h │ │ ├── Doxygen.conf │ │ ├── LUFA XPLAIN Bridge.inf │ │ ├── Lib │ │ │ ├── SoftUART.c │ │ │ └── SoftUART.h │ │ ├── USARTDescriptors.c │ │ ├── USARTDescriptors.h │ │ ├── XPLAINBridge.c │ │ ├── XPLAINBridge.h │ │ ├── XPLAINBridge.txt │ │ ├── asf.xml │ │ └── makefile │ └── makefile ├── README.txt └── makefile ├── LibraryDocs ├── Doxyfile └── README.md ├── README.md └── hardware └── DynamicPerception └── avr ├── boards.txt ├── bootloaders ├── AT90usb128X │ ├── AT90usb1287_MX3.hex │ ├── AT90usb1287_MoCo_Dev.hex │ ├── AT90usb1287_USBKey.hex │ ├── AT90usb128X.hex │ └── CDC │ │ ├── BootloaderAPI.c │ │ ├── BootloaderAPI.h │ │ ├── BootloaderAPITable.S │ │ ├── BootloaderCDC.c │ │ ├── BootloaderCDC.h │ │ ├── BootloaderCDC.txt │ │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── LUFA CDC Bootloader.inf │ │ └── makefile ├── AT90usb64X │ ├── AT90usb64X_default.hex │ └── CDC │ │ ├── BootloaderAPI.c │ │ ├── BootloaderAPI.h │ │ ├── BootloaderAPITable.S │ │ ├── BootloaderCDC.c │ │ ├── BootloaderCDC.h │ │ ├── BootloaderCDC.txt │ │ ├── Config │ │ ├── AppConfig.h │ │ └── LUFAConfig.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── LUFA CDC Bootloader.inf │ │ └── makefile └── Build │ ├── HID_EEPROM_Loader │ ├── HID_EEPROM_Loader.c │ └── makefile │ ├── 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 ├── cores └── AT90USB │ ├── Arduino.h │ ├── Client.h │ ├── HardwareSerial.cpp │ ├── HardwareSerial.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── LUFA │ ├── CodeTemplates │ │ ├── DriverStubs │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── LUFAConfig.h │ │ └── makefile_template │ ├── Common │ │ ├── ArchitectureSpecific.h │ │ ├── Architectures.h │ │ ├── Attributes.h │ │ ├── BoardTypes.h │ │ ├── Common.h │ │ ├── CompilerSpecific.h │ │ └── Endianness.h │ ├── Doxygen.conf │ ├── DoxygenPages │ │ ├── BuildSystem.txt │ │ ├── BuildingLinkableLibraries.txt │ │ ├── ChangeLog.txt │ │ ├── CompileTimeTokens.txt │ │ ├── CompilingApps.txt │ │ ├── ConfiguringApps.txt │ │ ├── DevelopingWithLUFA.txt │ │ ├── DeviceSupport.txt │ │ ├── DirectorySummaries.txt │ │ ├── Donating.txt │ │ ├── ExportingLibrary.txt │ │ ├── FutureChanges.txt │ │ ├── GettingStarted.txt │ │ ├── Groups.txt │ │ ├── Images │ │ │ ├── AS5_AS6_Import │ │ │ │ ├── AS5_AS6_Import_Step1.png │ │ │ │ ├── AS5_AS6_Import_Step2.png │ │ │ │ ├── AS5_AS6_Import_Step3.png │ │ │ │ ├── AS5_AS6_Import_Step4.png │ │ │ │ ├── AS5_AS6_Import_Step5_1.png │ │ │ │ ├── AS5_AS6_Import_Step5_2.png │ │ │ │ └── AS5_AS6_Import_Step5_3.png │ │ │ ├── Author.jpg │ │ │ ├── LUFA.png │ │ │ └── LUFA_thumb.png │ │ ├── KnownIssues.txt │ │ ├── LUFAPoweredProjects.txt │ │ ├── LibraryResources.txt │ │ ├── LicenseInfo.txt │ │ ├── MainPage.txt │ │ ├── MigrationInformation.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ └── 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 │ │ │ │ ├── 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 │ │ └── XMEGA │ │ │ └── ClockManagement.h │ ├── Version.h │ └── makefile │ ├── Platform.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Tone.cpp │ ├── USBSerialClass.cpp │ ├── USBSerialClass.h │ ├── USBSerialDescriptors.c │ ├── USBSerialDescriptors.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WInterrupts.c │ ├── WMath.cpp │ ├── WString.cpp │ ├── WString.h │ ├── binary.h │ ├── main.cpp │ ├── new.cpp │ ├── new.h │ ├── wiring.c │ ├── wiring_analog.c │ ├── wiring_digital.c │ ├── wiring_private.h │ ├── wiring_pulse.c │ └── wiring_shift.c ├── libraries ├── ArduinoLUFA │ ├── ArduinoLUFA.cpp │ ├── ArduinoLUFA.h │ └── keywords.txt ├── EEPROM │ ├── EEPROM.cpp │ ├── EEPROM.h │ ├── examples │ │ ├── eeprom_clear │ │ │ └── eeprom_clear.ino │ │ ├── eeprom_read │ │ │ └── eeprom_read.ino │ │ └── eeprom_write │ │ │ └── eeprom_write.ino │ └── keywords.txt ├── Ethernet │ ├── Dhcp.cpp │ ├── Dhcp.h │ ├── Dns.cpp │ ├── Dns.h │ ├── Ethernet.cpp │ ├── Ethernet.h │ ├── EthernetClient.cpp │ ├── EthernetClient.h │ ├── EthernetServer.cpp │ ├── EthernetServer.h │ ├── EthernetUdp.cpp │ ├── EthernetUdp.h │ ├── examples │ │ ├── BarometricPressureWebServer │ │ │ └── BarometricPressureWebServer.ino │ │ ├── ChatServer │ │ │ └── ChatServer.ino │ │ ├── CosmClient │ │ │ └── CosmClient.ino │ │ ├── CosmClientString │ │ │ └── CosmClientString.ino │ │ ├── DhcpAddressPrinter │ │ │ └── DhcpAddressPrinter.ino │ │ ├── DhcpChatServer │ │ │ └── DhcpChatServer.ino │ │ ├── PachubeClient │ │ │ └── PachubeClient.ino │ │ ├── PachubeClientString │ │ │ └── PachubeClientString.ino │ │ ├── TelnetClient │ │ │ └── TelnetClient.ino │ │ ├── TwitterClient │ │ │ └── TwitterClient.ino │ │ ├── UDPSendReceiveString │ │ │ └── UDPSendReceiveString.ino │ │ ├── UdpNtpClient │ │ │ └── UdpNtpClient.ino │ │ ├── WebClient │ │ │ └── WebClient.ino │ │ ├── WebClientRepeating │ │ │ └── WebClientRepeating.ino │ │ └── WebServer │ │ │ └── WebServer.ino │ ├── keywords.txt │ ├── util.h │ └── utility │ │ ├── socket.cpp │ │ ├── socket.h │ │ ├── w5100.cpp │ │ └── w5100.h ├── KeyboardHost │ ├── KeyboardHost.cpp │ ├── KeyboardHost.h │ ├── examples │ │ └── KeyBoardHostExample │ │ │ └── KeyBoardHostExample.ino │ └── keywords.txt ├── SPI │ ├── SPI.cpp │ ├── SPI.h │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ ├── BarometricPressureSensor.ino │ │ │ └── BarometricPressureSensor │ │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ └── keywords.txt ├── Servo │ ├── Servo.cpp │ ├── Servo.h │ ├── examples │ │ ├── Knob │ │ │ └── Knob.ino │ │ └── Sweep │ │ │ └── Sweep.ino │ └── keywords.txt ├── SoftwareSerial │ ├── SoftwareSerial.cpp │ ├── SoftwareSerial.h │ ├── examples │ │ ├── SoftwareSerialExample │ │ │ └── SoftwareSerialExample.ino │ │ └── TwoPortReceive │ │ │ └── TwoPortReceive.ino │ └── keywords.txt ├── Stepper │ ├── Stepper.cpp │ ├── Stepper.h │ ├── examples │ │ ├── MotorKnob │ │ │ └── MotorKnob.ino │ │ ├── stepper_oneRevolution │ │ │ └── stepper_oneRevolution.ino │ │ ├── stepper_oneStepAtATime │ │ │ └── stepper_oneStepAtATime.ino │ │ └── stepper_speedControl │ │ │ └── stepper_speedControl.ino │ └── keywords.txt ├── TFT │ ├── README.md │ ├── TFT.cpp │ ├── TFT.h │ ├── examples │ │ ├── Arduino │ │ │ ├── TFTBitmapLogo │ │ │ │ ├── TFTBitmapLogo.ino │ │ │ │ └── arduino.bmp │ │ │ ├── TFTColorPicker │ │ │ │ └── TFTColorPicker.ino │ │ │ ├── TFTDisplayText │ │ │ │ └── TFTDisplayText.ino │ │ │ ├── TFTEtchASketch │ │ │ │ └── TFTEtchASketch.ino │ │ │ ├── TFTGraph │ │ │ │ └── TFTGraph.ino │ │ │ └── TFTPong │ │ │ │ └── TFTPong.ino │ │ └── Esplora │ │ │ ├── EsploraTFTBitmapLogo │ │ │ ├── EsploraTFTBitmapLogo.ino │ │ │ └── arduino.bmp │ │ │ ├── EsploraTFTColorPicker │ │ │ └── EsploraTFTColorPicker.ino │ │ │ ├── EsploraTFTEtchASketch │ │ │ └── EsploraTFTEtchASketch.ino │ │ │ ├── EsploraTFTGraph │ │ │ └── EsploraTFTGraph.ino │ │ │ ├── EsploraTFTHorizon │ │ │ └── EsploraTFTHorizon.ino │ │ │ ├── EsploraTFTPong │ │ │ └── EsploraTFTPong.ino │ │ │ └── EsploraTFTTemp │ │ │ └── EsploraTFTTemp.ino │ ├── keywords.txt │ └── utility │ │ ├── Adafruit-README.txt │ │ ├── Adafruit-license.txt │ │ ├── Adafruit_GFX.cpp │ │ ├── Adafruit_GFX.h │ │ ├── Adafruit_ST7735.cpp │ │ ├── Adafruit_ST7735.h │ │ ├── PImage.h │ │ ├── glcdfont.c │ │ └── keywords.txt ├── WiFi │ ├── WiFi.cpp │ ├── WiFi.h │ ├── WiFiClient.cpp │ ├── WiFiClient.h │ ├── WiFiServer.cpp │ ├── WiFiServer.h │ ├── WiFiUdp.cpp │ ├── WiFiUdp.h │ ├── examples │ │ ├── ConnectNoEncryption │ │ │ └── ConnectNoEncryption.ino │ │ ├── ConnectWithWEP │ │ │ └── ConnectWithWEP.ino │ │ ├── ConnectWithWPA │ │ │ └── ConnectWithWPA.ino │ │ ├── ScanNetworks │ │ │ └── ScanNetworks.ino │ │ ├── SimpleWebServerWiFi │ │ │ └── SimpleWebServerWiFi.ino │ │ ├── WiFiChatServer │ │ │ └── WiFiChatServer.ino │ │ ├── WiFiPachubeClient │ │ │ └── WiFiPachubeClient.ino │ │ ├── WiFiPachubeClientString │ │ │ └── WiFiPachubeClientString.ino │ │ ├── WiFiTwitterClient │ │ │ └── WiFiTwitterClient.ino │ │ ├── WiFiUdpNtpClient │ │ │ └── WiFiUdpNtpClient.ino │ │ ├── WiFiUdpSendReceiveString │ │ │ └── WiFiUdpSendReceiveString.ino │ │ ├── WiFiWebClient │ │ │ └── WiFiWebClient.ino │ │ ├── WiFiWebClientRepeating │ │ │ └── WiFiWebClientRepeating.ino │ │ └── WiFiWebServer │ │ │ └── WiFiWebServer.ino │ ├── keywords.txt │ └── utility │ │ ├── debug.h │ │ ├── server_drv.cpp │ │ ├── server_drv.h │ │ ├── socket.c │ │ ├── socket.h │ │ ├── spi_drv.cpp │ │ ├── spi_drv.h │ │ ├── wifi_drv.cpp │ │ ├── wifi_drv.h │ │ ├── wifi_spi.h │ │ ├── wl_definitions.h │ │ └── wl_types.h └── Wire │ ├── Wire.cpp │ ├── Wire.h │ ├── examples │ ├── SFRRanger_reader │ │ └── SFRRanger_reader.ino │ ├── digital_potentiometer │ │ └── digital_potentiometer.ino │ ├── master_reader │ │ └── master_reader.ino │ ├── master_writer │ │ └── master_writer.ino │ ├── slave_receiver │ │ └── slave_receiver.ino │ └── slave_sender │ │ └── slave_sender.ino │ ├── keywords.txt │ └── utility │ ├── twi.c │ └── twi.h ├── platform.txt ├── programmers.txt └── variants ├── at90usb128X └── pins_arduino.h └── at90usb64X └── pins_arduino.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.xcworkspace 2 | .DS_Store 3 | 4 | -------------------------------------------------------------------------------- /ExampleSketches/USBASCIITable/USBASCIITable.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/ExampleSketches/USBASCIITable/USBASCIITable.ino -------------------------------------------------------------------------------- /ExampleSketches/USBSerialEcho/USBSerialEcho.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/ExampleSketches/USBSerialEcho/USBSerialEcho.ino -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/BootloaderAPI.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/BootloaderAPI.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/BootloaderAPITable.S -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/BootloaderCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/BootloaderCDC.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/BootloaderCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/BootloaderCDC.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/BootloaderCDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/BootloaderCDC.txt -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/LUFA CDC Bootloader.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/LUFA CDC Bootloader.inf -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/CDC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/CDC/makefile -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/BootloaderAPI.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/BootloaderAPI.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/BootloaderAPITable.S -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/DFU/makefile -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/BootloaderHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/BootloaderHID.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/BootloaderHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/BootloaderHID.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/BootloaderHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/BootloaderHID.txt -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/HostLoaderApp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/HostLoaderApp/Makefile -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/HostLoaderApp/Makefile.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/HostLoaderApp/Makefile.bsd -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/HostLoaderApp/gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/HostLoaderApp/gpl3.txt -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/HID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/HID/makefile -------------------------------------------------------------------------------- /LUFA-130303/Bootloaders/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Bootloaders/makefile -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/Board/Board.h -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/Board/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/Board/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/Board/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/Board/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/BoardDeviceMap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/BoardDeviceMap.cfg -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/Test.c -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/makefile -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BoardDriverTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BoardDriverTest/makefile.test -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/BootloaderTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/BootloaderTest/makefile -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/ModuleTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/ModuleTest/Dummy.S -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/ModuleTest/Modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/ModuleTest/Modules.h -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/ModuleTest/Test_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/ModuleTest/Test_C.c -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/ModuleTest/Test_CPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/ModuleTest/Test_CPP.cpp -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/ModuleTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/ModuleTest/makefile -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/ModuleTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/ModuleTest/makefile.test -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/SingleUSBModeTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/SingleUSBModeTest/Dummy.S -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/SingleUSBModeTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/SingleUSBModeTest/Test.c -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/SingleUSBModeTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/SingleUSBModeTest/makefile -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/SingleUSBModeTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/SingleUSBModeTest/makefile.test -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/StaticAnalysisTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/StaticAnalysisTest/makefile -------------------------------------------------------------------------------- /LUFA-130303/BuildTests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/BuildTests/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/AudioInput/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/AudioInput/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/AudioInput/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/AudioOutput/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/AudioOutput/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/AudioOutput/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/GenericHID/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/GenericHID/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/GenericHID/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Joystick/Joystick.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Joystick/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Joystick/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Joystick/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Joystick/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Keyboard/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Keyboard/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Keyboard/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/MIDI.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/MIDI.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/MIDI.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MIDI/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MassStorage/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MassStorage/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/MassStorage/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/Mouse.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/Mouse.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/Mouse.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/Mouse/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/ClassDriver/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/AudioInput/AudioInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/AudioInput/AudioInput.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/AudioInput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/AudioInput/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/AudioInput/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/AudioInput/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/AudioInput/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/AudioOutput/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/AudioOutput/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/AudioOutput/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/GenericHID/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/GenericHID/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/GenericHID/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/GenericHID/GenericHID.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/GenericHID/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/GenericHID/GenericHID.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/GenericHID/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/GenericHID/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/GenericHID/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/Joystick.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/Joystick.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Joystick/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Keyboard/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/KeyboardMouse/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/KeyboardMouse/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/KeyboardMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/KeyboardMouse/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/MIDI.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/MIDI.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/MIDI.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MIDI/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MassStorage/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MassStorage/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/MassStorage/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/Mouse.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/Mouse.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/Mouse.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/Mouse/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/RNDISEthernet/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/VirtualSerial/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/VirtualSerial/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/VirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/VirtualSerial/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/LowLevel/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Device/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Device/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/DualRole/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/DualRole/ClassDriver/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/DualRole/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/DualRole/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/AudioInputHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/AudioInputHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/KeyboardHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/KeyboardHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/KeyboardHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MIDIHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MIDIHost/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MIDIHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MIDIHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MIDIHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MouseHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MouseHost/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MouseHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MouseHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/MouseHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/PrinterHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/PrinterHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/PrinterHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/StillImageHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/StillImageHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/ClassDriver/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/AudioInputHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/AudioInputHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/AudioInputHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/AudioInputHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/AudioOutputHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/AudioOutputHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/AudioOutputHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/AudioOutputHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/GenericHIDHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/GenericHIDHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/GenericHIDHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/GenericHIDHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/KeyboardHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/KeyboardHost/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/KeyboardHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/KeyboardHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/KeyboardHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MIDIHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MIDIHost/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MIDIHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MIDIHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MIDIHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MassStorageHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MassStorageHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MassStorageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MassStorageHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MouseHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MouseHost/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MouseHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MouseHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/MouseHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/PrinterHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/PrinterHost/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/PrinterHost/PrinterHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/PrinterHost/PrinterHost.c -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/PrinterHost/PrinterHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/PrinterHost/PrinterHost.h -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/PrinterHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/PrinterHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/PrinterHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/RNDISEthernetHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/RNDISEthernetHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/StillImageHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/StillImageHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/StillImageHost/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/VirtualSerialHost/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/VirtualSerialHost/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/LowLevel/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/Host/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/Host/makefile -------------------------------------------------------------------------------- /LUFA-130303/Demos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Demos/makefile -------------------------------------------------------------------------------- /LUFA-130303/LUFA.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA.pnproj -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/HID_EEPROM_Loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/HID_EEPROM_Loader/makefile -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_atprogram.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_avrdude.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_build.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_core.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_cppcheck.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_dfu.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_doxygen.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_hid.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Build/lufa_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Build/lufa_sources.mk -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/DeviceTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/DeviceTemplate/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/DriverStubs/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/DriverStubs/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/HostTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/HostTemplate/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/CodeTemplates/makefile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/CodeTemplates/makefile_template -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Common/ArchitectureSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Common/ArchitectureSpecific.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Common/Architectures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Common/Architectures.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Common/Common.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Common/CompilerSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Common/CompilerSpecific.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Common/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Common/Endianness.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/BuildSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/BuildSystem.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/ChangeLog.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/CompilingApps.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/DeviceSupport.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/Donating.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/ExportingLibrary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/ExportingLibrary.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/FutureChanges.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/GettingStarted.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/Groups.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/Images/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/Images/Author.jpg -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/Images/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/Images/LUFA.png -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/Images/LUFA_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/Images/LUFA_thumb.png -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/KnownIssues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/KnownIssues.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/LibraryResources.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/LicenseInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/LicenseInfo.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/MainPage.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/MigrationInformation.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/SoftwareBootloaderJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/SoftwareBootloaderJump.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/Style/Footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/Style/Footer.htm -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/Style/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/Style/Style.css -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/DoxygenPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/DoxygenPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BENITO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BENITO/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BUI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BUI/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BUI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BUI/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/CULV3/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/CULV3/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/DUCE/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/DUCE/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MULTIO/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK525/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/STK526/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/TEENSY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/TEENSY/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/TUL/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/TUL/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/TUL/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/TUL/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/TUL/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/TUL/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/UDIP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/UDIP/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/UNO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/UNO/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/UNO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/UNO/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USB2AX/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USB2AX/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBFOO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBFOO/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1104/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1104/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Misc/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Misc/AT45DB321C.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Misc/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Misc/AT45DB642D.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Misc/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Misc/RingBuffer.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/SerialSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/SerialSPI.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/AudioClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/CDCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/CDCClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Common/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Common/HIDParser.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Common/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Common/HIDParser.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Common/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Common/HIDReportData.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/HIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/HIDClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/AudioClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/AudioClassHost.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/AudioClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/AudioClassHost.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/CDCClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/CDCClassHost.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/CDCClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/CDCClassHost.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/HIDClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/HIDClassHost.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/HIDClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/HIDClassHost.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/MIDIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/MIDIClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/MassStorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/MassStorageClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/PrinterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/PrinterClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/RNDISClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/RNDISClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Class/StillImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Class/StillImageClass.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/ConfigDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/ConfigDescriptors.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/ConfigDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/ConfigDescriptors.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/Device.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/DeviceStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/DeviceStandardReq.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/DeviceStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/DeviceStandardReq.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/Endpoint.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/EndpointStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/EndpointStream.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/Events.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/Events.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/Host.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/HostStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/HostStandardReq.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/HostStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/HostStandardReq.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/OTG.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/Pipe.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/PipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/PipeStream.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/StdDescriptors.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/StdRequestType.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Device_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Device_UC3.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Device_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Device_UC3.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Host_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Host_UC3.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Host_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Host_UC3.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/USBController.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/USBInterrupt.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/USBMode.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/USBTask.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/USBTask.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/License.txt -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Platform/Platform.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Platform/UC3/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Platform/UC3/ClockManagement.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Platform/UC3/Exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Platform/UC3/Exception.S -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Platform/UC3/InterruptManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Platform/UC3/InterruptManagement.c -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Platform/UC3/InterruptManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Platform/UC3/InterruptManagement.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Platform/XMEGA/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Platform/XMEGA/ClockManagement.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/VSIX/asf-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/VSIX/asf-manifest.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/generate_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/generate_caches.py -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/lufa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/lufa.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/lufa_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/lufa_common.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/lufa_drivers_board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/lufa_drivers_board.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/lufa_drivers_usb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/lufa_drivers_usb.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/lufa_platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/lufa_platform.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/lufa_toolchain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/lufa_toolchain.xml -------------------------------------------------------------------------------- /LUFA-130303/LUFA/StudioIntegration/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/StudioIntegration/makefile -------------------------------------------------------------------------------- /LUFA-130303/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/Version.h -------------------------------------------------------------------------------- /LUFA-130303/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/LUFA/makefile -------------------------------------------------------------------------------- /LUFA-130303/Maintenance/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Maintenance/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/AVRISP-MKII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/AVRISP-MKII.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/AVRISP-MKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/AVRISP-MKII.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/AVRISP-MKII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/AVRISP-MKII.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/AVRISPDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/AVRISPDescriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/AVRISPDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/AVRISPDescriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/V2Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/V2Protocol.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/V2Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/V2Protocol.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/V2ProtocolParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/V2ProtocolParams.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/AVRISP-MKII/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/AVRISP-MKII/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Benito Programmer.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Benito Programmer.inf -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Benito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Benito.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Benito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Benito.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Benito.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Benito.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/Benito/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Benito/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/HIDReportViewer/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/HIDReportViewer/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/HIDReportViewer/HIDReportViewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/HIDReportViewer/HIDReportViewer.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/HIDReportViewer/HIDReportViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/HIDReportViewer/HIDReportViewer.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/HIDReportViewer/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/HIDReportViewer/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/HIDReportViewer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/HIDReportViewer/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/CPUUsageApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/CPUUsageApp/Program.cs -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/LEDMixerApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/LEDMixerApp/Program.cs -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/LEDNotifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/LEDNotifier.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/LEDNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/LEDNotifier.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/LEDNotifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/LEDNotifier.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/LUFA LED Notifier.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/LUFA LED Notifier.inf -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/LEDNotifier/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/LEDNotifier/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/MIDIToneGenerator/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MIDIToneGenerator/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/MIDIToneGenerator/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MIDIToneGenerator/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/MIDIToneGenerator/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MIDIToneGenerator/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/MIDIToneGenerator/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MIDIToneGenerator/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/MIDIToneGenerator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MIDIToneGenerator/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Lib/CircularBitBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Lib/CircularBitBuffer.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Lib/CircularBitBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Lib/CircularBitBuffer.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Lib/MagstripeHW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Lib/MagstripeHW.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Magstripe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Magstripe.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Magstripe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Magstripe.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/Magstripe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/Magstripe.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/Magstripe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Magstripe/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/MediaController/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MediaController/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/MediaController/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MediaController/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/MediaController/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MediaController/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/MediaController/MediaController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MediaController/MediaController.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/MediaController/MediaController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MediaController/MediaController.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/MediaController/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MediaController/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/MediaController/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MediaController/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/MissileLauncher/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MissileLauncher/ConfigDescriptor.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/MissileLauncher/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MissileLauncher/ConfigDescriptor.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/MissileLauncher/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MissileLauncher/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/MissileLauncher/MissileLauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MissileLauncher/MissileLauncher.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/MissileLauncher/MissileLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MissileLauncher/MissileLauncher.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/MissileLauncher/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MissileLauncher/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/MissileLauncher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/MissileLauncher/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/RelayBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/RelayBoard.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/RelayBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/RelayBoard.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/RelayBoard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/RelayBoard.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/RelayBoard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/RelayBoard/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/Lib/HD44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/Lib/HD44780.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/Lib/HD44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/Lib/HD44780.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/SerialToLCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/SerialToLCD.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/SerialToLCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/SerialToLCD.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/SerialToLCD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/SerialToLCD.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/SerialToLCD/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/SerialToLCD/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/DS1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/DS1307.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/DS1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/DS1307.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/SCSI.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/Lib/SCSI.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/TempDataLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/TempDataLogger.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/TempDataLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/TempDataLogger.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/TempDataLogger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/TempDataLogger/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/LUFA USBtoSerial.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/LUFA USBtoSerial.inf -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/USBtoSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/USBtoSerial.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/USBtoSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/USBtoSerial.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/USBtoSerial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/USBtoSerial.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/USBtoSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/USBtoSerial/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Descriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Descriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/LUFA Webserver RNDIS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/LUFA Webserver RNDIS.inf -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DHCPClientApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DHCPClientApp.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DHCPClientApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DHCPClientApp.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DHCPCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DHCPCommon.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DHCPCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DHCPCommon.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DHCPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DHCPServerApp.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DHCPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DHCPServerApp.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DataflashManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DataflashManager.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/DataflashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/DataflashManager.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/FATFs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/FATFs/00readme.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/HTTPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/HTTPServerApp.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/HTTPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/HTTPServerApp.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/SCSI.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/SCSI.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/TELNETServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/TELNETServerApp.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/TELNETServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/TELNETServerApp.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uIPManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uIPManagement.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uIPManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uIPManagement.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/clock.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/clock.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/timer.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/timer.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/uip-split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/uip-split.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/uip-split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/uip-split.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/uip.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/uip.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/uip_arp.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/uip_arp.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Lib/uip/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Lib/uip/uipopt.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/USBDeviceMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/USBDeviceMode.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/USBDeviceMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/USBDeviceMode.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/USBHostMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/USBHostMode.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/USBHostMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/USBHostMode.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Webserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Webserver.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Webserver.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/Webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/Webserver.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/Webserver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/Webserver/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/Config/AppConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/Config/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/Lib/SoftUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/Lib/SoftUART.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/Lib/SoftUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/Lib/SoftUART.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/USARTDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/USARTDescriptors.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/USARTDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/USARTDescriptors.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/XPLAINBridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/XPLAINBridge.c -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/XPLAINBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/XPLAINBridge.h -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/XPLAINBridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/XPLAINBridge.txt -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/asf.xml -------------------------------------------------------------------------------- /LUFA-130303/Projects/XPLAINBridge/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/XPLAINBridge/makefile -------------------------------------------------------------------------------- /LUFA-130303/Projects/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/Projects/makefile -------------------------------------------------------------------------------- /LUFA-130303/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/README.txt -------------------------------------------------------------------------------- /LUFA-130303/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LUFA-130303/makefile -------------------------------------------------------------------------------- /LibraryDocs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LibraryDocs/Doxyfile -------------------------------------------------------------------------------- /LibraryDocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/LibraryDocs/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/README.md -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/boards.txt -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Arduino.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Client.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Platform.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Print.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Print.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Server.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Stream.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Stream.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Tone.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/Udp.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/WMath.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/WString.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/binary.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/main.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/new.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/new.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/cores/AT90USB/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/cores/AT90USB/wiring.c -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/Ethernet/Dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/Ethernet/Dns.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/SPI/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/SPI/SPI.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/SPI/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/SPI/SPI.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/Servo/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/Servo/Servo.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/TFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/TFT/README.md -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/TFT/TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/TFT/TFT.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/TFT/TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/TFT/TFT.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/WiFi/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/WiFi/WiFi.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/WiFi/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/WiFi/WiFi.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/WiFi/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/WiFi/WiFiUdp.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/platform.txt -------------------------------------------------------------------------------- /hardware/DynamicPerception/avr/programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynamicPerception/ArduinoAT90USB/HEAD/hardware/DynamicPerception/avr/programmers.txt --------------------------------------------------------------------------------