├── .gitignore ├── README.html ├── README.md ├── hardware ├── README ├── ninja.brd └── ninja.sch ├── precompiled ├── ninja-arduino-diecemilia-atmega168.hex └── ninja-leonard-pirate-atmega32u4.hex ├── src ├── Makefile ├── bus.c ├── bus.h ├── bus_commands.c ├── bus_i2c.c ├── bus_i2c.h ├── bus_spi.c ├── bus_spi.h ├── command_bitbang.c ├── command_bitbang.h ├── commands.c ├── commands.h ├── config-arduino.mk ├── config-dev.mk ├── config-leonard_pirate.mk ├── config-pro_mini.mk ├── config-teensy.mk ├── config.mk ├── console.c ├── console.h ├── cpu.c ├── cpu.h ├── global_commands.c ├── global_commands.h ├── hw_i2c.c ├── hw_i2c.h ├── hw_led.c ├── hw_led.h ├── hw_spi.c ├── hw_spi.h ├── hw_uart.c ├── hw_uart.h ├── jtag.c ├── jtag.h ├── led.c ├── led.h ├── menu.c ├── menu.h ├── ninja.c ├── ninja.h ├── parse.c ├── parse.h ├── rules.mk ├── tick.c ├── tick.h ├── usbdev.c ├── usbdev.h ├── usbdev_avrisp.c ├── usbdev_avrisp.h ├── usbdev_cdc.c ├── usbdev_cdc.h ├── usbdev_jtag.c ├── usbdev_jtag.h ├── watchdog.c └── watchdog.h ├── test ├── i2c │ ├── 24LC16B-breadboard.jpg │ ├── 24LC16B-pinout.png │ └── 24LC16B.txt └── spi │ ├── ._MCP23S17-pinout.png │ ├── MCP23S17-breadboard.jpg │ ├── MCP23S17-pinout.png │ └── MCP23S17.txt └── third-party └── LUFA100513 ├── Bootloaders ├── CDC │ ├── BootloaderCDC.c │ ├── BootloaderCDC.h │ ├── BootloaderCDC.txt │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── LUFA CDC Bootloader.inf │ └── makefile ├── DFU │ ├── BootloaderDFU.c │ ├── BootloaderDFU.h │ ├── BootloaderDFU.txt │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ └── makefile └── makefile ├── Demos ├── Device │ ├── ClassDriver │ │ ├── AudioInput │ │ │ ├── AudioInput.c │ │ │ ├── AudioInput.h │ │ │ ├── AudioInput.txt │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ └── makefile │ │ ├── AudioOutput │ │ │ ├── AudioOutput.c │ │ │ ├── AudioOutput.h │ │ │ ├── AudioOutput.txt │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ └── makefile │ │ ├── DualVirtualSerial │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── DualVirtualSerial.c │ │ │ ├── DualVirtualSerial.h │ │ │ ├── DualVirtualSerial.txt │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ └── makefile │ │ ├── GenericHID │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── GenericHID.c │ │ │ ├── GenericHID.h │ │ │ ├── GenericHID.txt │ │ │ └── makefile │ │ ├── Joystick │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Joystick.c │ │ │ ├── Joystick.h │ │ │ ├── Joystick.txt │ │ │ └── makefile │ │ ├── Keyboard │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Keyboard.c │ │ │ ├── Keyboard.h │ │ │ ├── Keyboard.txt │ │ │ └── makefile │ │ ├── KeyboardMouse │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── KeyboardMouse.c │ │ │ ├── KeyboardMouse.h │ │ │ ├── KeyboardMouse.txt │ │ │ └── makefile │ │ ├── MIDI │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── MIDI.c │ │ │ ├── MIDI.h │ │ │ ├── MIDI.txt │ │ │ └── makefile │ │ ├── MassStorage │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ │ ├── DataflashManager.c │ │ │ │ ├── DataflashManager.h │ │ │ │ ├── SCSI.c │ │ │ │ └── SCSI.h │ │ │ ├── MassStorage.c │ │ │ ├── MassStorage.h │ │ │ ├── MassStorage.txt │ │ │ └── makefile │ │ ├── MassStorageKeyboard │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ │ ├── DataflashManager.c │ │ │ │ ├── DataflashManager.h │ │ │ │ ├── SCSI.c │ │ │ │ ├── SCSI.h │ │ │ │ └── SCSI_Codes.h │ │ │ ├── MassStorageKeyboard.c │ │ │ ├── MassStorageKeyboard.h │ │ │ ├── MassStorageKeyboard.txt │ │ │ └── makefile │ │ ├── Mouse │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Mouse.c │ │ │ ├── Mouse.h │ │ │ ├── Mouse.txt │ │ │ └── makefile │ │ ├── RNDISEthernet │ │ │ ├── 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 │ │ │ └── makefile │ │ ├── VirtualSerial │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── LUFA VirtualSerial.inf │ │ │ ├── VirtualSerial.c │ │ │ ├── VirtualSerial.h │ │ │ ├── VirtualSerial.txt │ │ │ └── makefile │ │ ├── VirtualSerialMouse │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── LUFA VirtualSerialMouse.inf │ │ │ ├── VirtualSerialMouse.c │ │ │ ├── VirtualSerialMouse.h │ │ │ ├── VirtualSerialMouse.txt │ │ │ └── makefile │ │ └── makefile │ ├── Incomplete │ │ └── Sideshow │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Lib │ │ │ ├── SideshowApplications.c │ │ │ ├── SideshowApplications.h │ │ │ ├── SideshowCommands.c │ │ │ ├── SideshowCommands.h │ │ │ ├── SideshowCommon.c │ │ │ ├── SideshowCommon.h │ │ │ ├── SideshowContent.c │ │ │ └── SideshowContent.h │ │ │ ├── Sideshow.c │ │ │ ├── Sideshow.h │ │ │ └── makefile │ ├── LowLevel │ │ ├── AudioInput │ │ │ ├── AudioInput.c │ │ │ ├── AudioInput.h │ │ │ ├── AudioInput.txt │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ └── makefile │ │ ├── AudioOutput │ │ │ ├── AudioOutput.c │ │ │ ├── AudioOutput.h │ │ │ ├── AudioOutput.txt │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ └── makefile │ │ ├── DualVirtualSerial │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── DualVirtualSerial.c │ │ │ ├── DualVirtualSerial.h │ │ │ ├── DualVirtualSerial.txt │ │ │ ├── LUFA DualVirtualSerial.inf │ │ │ └── makefile │ │ ├── GenericHID │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── GenericHID.c │ │ │ ├── GenericHID.h │ │ │ ├── GenericHID.txt │ │ │ └── makefile │ │ ├── Joystick │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Joystick.c │ │ │ ├── Joystick.h │ │ │ ├── Joystick.txt │ │ │ └── makefile │ │ ├── Keyboard │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Keyboard.c │ │ │ ├── Keyboard.h │ │ │ ├── Keyboard.txt │ │ │ └── makefile │ │ ├── KeyboardMouse │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── KeyboardMouse.c │ │ │ ├── KeyboardMouse.h │ │ │ ├── KeyboardMouse.txt │ │ │ └── makefile │ │ ├── MIDI │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── MIDI.c │ │ │ ├── MIDI.h │ │ │ ├── MIDI.txt │ │ │ └── makefile │ │ ├── MassStorage │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ │ ├── DataflashManager.c │ │ │ │ ├── DataflashManager.h │ │ │ │ ├── SCSI.c │ │ │ │ ├── SCSI.h │ │ │ │ └── SCSI_Codes.h │ │ │ ├── MassStorage.c │ │ │ ├── MassStorage.h │ │ │ ├── MassStorage.txt │ │ │ └── makefile │ │ ├── Mouse │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── Mouse.c │ │ │ ├── Mouse.h │ │ │ ├── Mouse.txt │ │ │ └── makefile │ │ ├── RNDISEthernet │ │ │ ├── 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 │ │ │ │ ├── RNDISConstants.h │ │ │ │ ├── TCP.c │ │ │ │ ├── TCP.h │ │ │ │ ├── UDP.c │ │ │ │ ├── UDP.h │ │ │ │ ├── Webserver.c │ │ │ │ └── Webserver.h │ │ │ ├── RNDISEthernet.c │ │ │ ├── RNDISEthernet.h │ │ │ ├── RNDISEthernet.txt │ │ │ └── makefile │ │ ├── VirtualSerial │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Doxygen.conf │ │ │ ├── LUFA VirtualSerial.inf │ │ │ ├── VirtualSerial.c │ │ │ ├── VirtualSerial.h │ │ │ ├── VirtualSerial.txt │ │ │ └── makefile │ │ └── makefile │ └── makefile ├── DualRole │ ├── ClassDriver │ │ ├── MouseHostDevice │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── DeviceFunctions.c │ │ │ ├── DeviceFunctions.h │ │ │ ├── Doxygen.conf │ │ │ ├── HostFunctions.c │ │ │ ├── HostFunctions.h │ │ │ ├── MouseHostDevice.c │ │ │ ├── MouseHostDevice.h │ │ │ ├── MouseHostDevice.txt │ │ │ └── makefile │ │ └── makefile │ └── makefile ├── Host │ ├── ClassDriver │ │ ├── JoystickHostWithParser │ │ │ ├── Doxygen.conf │ │ │ ├── JoystickHostWithParser.c │ │ │ ├── JoystickHostWithParser.h │ │ │ ├── JoystickHostWithParser.txt │ │ │ └── makefile │ │ ├── KeyboardHost │ │ │ ├── Doxygen.conf │ │ │ ├── KeyboardHost.c │ │ │ ├── KeyboardHost.h │ │ │ ├── KeyboardHost.txt │ │ │ └── makefile │ │ ├── KeyboardHostWithParser │ │ │ ├── Doxygen.conf │ │ │ ├── KeyboardHostWithParser.c │ │ │ ├── KeyboardHostWithParser.h │ │ │ ├── KeyboardHostWithParser.txt │ │ │ └── makefile │ │ ├── MIDIHost │ │ │ ├── Doxygen.conf │ │ │ ├── MIDIHost.c │ │ │ ├── MIDIHost.h │ │ │ ├── MIDIHost.txt │ │ │ └── makefile │ │ ├── MassStorageHost │ │ │ ├── Doxygen.conf │ │ │ ├── MassStorageHost.c │ │ │ ├── MassStorageHost.h │ │ │ ├── MassStorageHost.txt │ │ │ └── makefile │ │ ├── MouseHost │ │ │ ├── Doxygen.conf │ │ │ ├── MouseHost.c │ │ │ ├── MouseHost.h │ │ │ ├── MouseHost.txt │ │ │ └── makefile │ │ ├── MouseHostWithParser │ │ │ ├── Doxygen.conf │ │ │ ├── MouseHostWithParser.c │ │ │ ├── MouseHostWithParser.h │ │ │ ├── MouseHostWithParser.txt │ │ │ └── makefile │ │ ├── PrinterHost │ │ │ ├── Doxygen.conf │ │ │ ├── PrinterHost.c │ │ │ ├── PrinterHost.h │ │ │ ├── PrinterHost.txt │ │ │ └── makefile │ │ ├── RNDISEthernetHost │ │ │ ├── Doxygen.conf │ │ │ ├── RNDISEthernetHost.c │ │ │ ├── RNDISEthernetHost.h │ │ │ ├── RNDISEthernetHost.txt │ │ │ └── makefile │ │ ├── StillImageHost │ │ │ ├── Doxygen.conf │ │ │ ├── StillImageHost.c │ │ │ ├── StillImageHost.h │ │ │ ├── StillImageHost.txt │ │ │ └── makefile │ │ ├── VirtualSerialHost │ │ │ ├── Doxygen.conf │ │ │ ├── VirtualSerialHost.c │ │ │ ├── VirtualSerialHost.h │ │ │ ├── VirtualSerialHost.txt │ │ │ └── makefile │ │ └── makefile │ ├── Incomplete │ │ └── BluetoothHost │ │ │ ├── BluetoothHost.c │ │ │ ├── BluetoothHost.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── DeviceDescriptor.c │ │ │ ├── DeviceDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ ├── BluetoothACLPackets.c │ │ │ ├── BluetoothACLPackets.h │ │ │ ├── BluetoothClassCodes.h │ │ │ ├── BluetoothHCICommands.c │ │ │ ├── BluetoothHCICommands.h │ │ │ ├── BluetoothStack.c │ │ │ ├── BluetoothStack.h │ │ │ ├── ServiceDiscoveryProtocol.c │ │ │ └── ServiceDiscoveryProtocol.h │ │ │ └── makefile │ ├── LowLevel │ │ ├── GenericHIDHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── GenericHIDHost.c │ │ │ ├── GenericHIDHost.h │ │ │ ├── GenericHIDHost.txt │ │ │ └── makefile │ │ ├── JoystickHostWithParser │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── HIDReport.c │ │ │ ├── HIDReport.h │ │ │ ├── JoystickHostWithParser.c │ │ │ ├── JoystickHostWithParser.h │ │ │ ├── JoystickHostWithParser.txt │ │ │ └── makefile │ │ ├── KeyboardHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── KeyboardHost.c │ │ │ ├── KeyboardHost.h │ │ │ ├── KeyboardHost.txt │ │ │ └── makefile │ │ ├── KeyboardHostWithParser │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── HIDReport.c │ │ │ ├── HIDReport.h │ │ │ ├── KeyboardHostWithParser.c │ │ │ ├── KeyboardHostWithParser.h │ │ │ ├── KeyboardHostWithParser.txt │ │ │ └── makefile │ │ ├── MIDIHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── MIDIHost.c │ │ │ ├── MIDIHost.h │ │ │ ├── MIDIHost.txt │ │ │ └── makefile │ │ ├── MassStorageHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ │ ├── MassStoreCommands.c │ │ │ │ ├── MassStoreCommands.h │ │ │ │ └── SCSI_Codes.h │ │ │ ├── MassStorageHost.c │ │ │ ├── MassStorageHost.h │ │ │ ├── MassStorageHost.txt │ │ │ └── makefile │ │ ├── MouseHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── MouseHost.c │ │ │ ├── MouseHost.h │ │ │ ├── MouseHost.txt │ │ │ └── makefile │ │ ├── MouseHostWithParser │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── HIDReport.c │ │ │ ├── HIDReport.h │ │ │ ├── MouseHostWithParser.c │ │ │ ├── MouseHostWithParser.h │ │ │ ├── MouseHostWithParser.txt │ │ │ └── makefile │ │ ├── PrinterHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ │ ├── PrinterCommands.c │ │ │ │ └── PrinterCommands.h │ │ │ ├── PrinterHost.c │ │ │ ├── PrinterHost.h │ │ │ ├── PrinterHost.txt │ │ │ └── makefile │ │ ├── RNDISEthernetHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ │ ├── RNDISCommands.c │ │ │ │ ├── RNDISCommands.h │ │ │ │ └── RNDISConstants.h │ │ │ ├── RNDISEthernetHost.c │ │ │ ├── RNDISEthernetHost.h │ │ │ ├── RNDISHost.txt │ │ │ └── makefile │ │ ├── StillImageHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── Lib │ │ │ │ ├── PIMACodes.h │ │ │ │ ├── StillImageCommands.c │ │ │ │ └── StillImageCommands.h │ │ │ ├── StillImageHost.c │ │ │ ├── StillImageHost.h │ │ │ ├── StillImageHost.txt │ │ │ └── makefile │ │ ├── VirtualSerialHost │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Doxygen.conf │ │ │ ├── VirtualSerialHost.c │ │ │ ├── VirtualSerialHost.h │ │ │ ├── VirtualSerialHost.txt │ │ │ └── makefile │ │ └── makefile │ └── makefile └── makefile ├── LUFA.pnproj ├── LUFA ├── Common │ ├── Attributes.h │ ├── BoardTypes.h │ └── Common.h ├── Doxygen.conf ├── Doxygen.css ├── DriverStubs │ ├── Buttons.h │ ├── Dataflash.h │ ├── Joystick.h │ └── LEDs.h ├── Drivers │ ├── Board │ │ ├── ATAVRUSBRF01 │ │ │ ├── Buttons.h │ │ │ └── LEDs.h │ │ ├── BENITO │ │ │ ├── Buttons.h │ │ │ └── LEDs.h │ │ ├── BUMBLEB │ │ │ ├── Buttons.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── Buttons.h │ │ ├── Dataflash.h │ │ ├── EVK527 │ │ │ ├── AT45DB321C.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── JMDBU2 │ │ │ ├── Buttons.h │ │ │ └── LEDs.h │ │ ├── Joystick.h │ │ ├── LEDs.h │ │ ├── RZUSBSTICK │ │ │ └── LEDs.h │ │ ├── STK525 │ │ │ ├── AT45DB321C.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── STK526 │ │ │ ├── AT45DB642D.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── TEENSY │ │ │ └── LEDs.h │ │ ├── Temperature.c │ │ ├── Temperature.h │ │ ├── USBKEY │ │ │ ├── AT45DB642D.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── USBTINYMKII │ │ │ ├── Buttons.h │ │ │ └── LEDs.h │ │ └── XPLAIN │ │ │ ├── AT45DB642D.h │ │ │ ├── Dataflash.h │ │ │ └── LEDs.h │ ├── Misc │ │ └── TerminalCodes.h │ ├── Peripheral │ │ ├── ADC.h │ │ ├── AVRU4U6U7 │ │ │ ├── ADC.h │ │ │ └── TWI.h │ │ ├── SPI.h │ │ ├── Serial.c │ │ ├── Serial.h │ │ ├── SerialStream.c │ │ ├── SerialStream.h │ │ ├── TWI.c │ │ └── TWI.h │ └── USB │ │ ├── Class │ │ ├── Audio.h │ │ ├── CDC.h │ │ ├── Common │ │ │ ├── Audio.h │ │ │ ├── CDC.h │ │ │ ├── HID.h │ │ │ ├── MIDI.h │ │ │ ├── MassStorage.h │ │ │ ├── Printer.h │ │ │ ├── RNDIS.h │ │ │ ├── RNDISConstants.h │ │ │ └── StillImage.h │ │ ├── Device │ │ │ ├── Audio.c │ │ │ ├── Audio.h │ │ │ ├── CDC.c │ │ │ ├── CDC.h │ │ │ ├── CDC.o │ │ │ ├── HID.c │ │ │ ├── HID.h │ │ │ ├── MIDI.c │ │ │ ├── MIDI.h │ │ │ ├── MassStorage.c │ │ │ ├── MassStorage.h │ │ │ ├── RNDIS.c │ │ │ └── RNDIS.h │ │ ├── HID.h │ │ ├── Host │ │ │ ├── CDC.c │ │ │ ├── CDC.h │ │ │ ├── CDC.o │ │ │ ├── HID.c │ │ │ ├── HID.h │ │ │ ├── HIDParser.c │ │ │ ├── HIDParser.h │ │ │ ├── HIDReportData.h │ │ │ ├── MIDI.c │ │ │ ├── MIDI.h │ │ │ ├── MassStorage.c │ │ │ ├── MassStorage.h │ │ │ ├── Printer.c │ │ │ ├── Printer.h │ │ │ ├── RNDIS.c │ │ │ ├── RNDIS.h │ │ │ ├── StillImage.c │ │ │ └── StillImage.h │ │ ├── MIDI.h │ │ ├── MassStorage.h │ │ ├── Printer.h │ │ ├── RNDIS.h │ │ └── StillImage.h │ │ ├── HighLevel │ │ ├── ConfigDescriptor.c │ │ ├── ConfigDescriptor.h │ │ ├── ConfigDescriptor.o │ │ ├── Events.c │ │ ├── Events.h │ │ ├── Events.o │ │ ├── StdDescriptors.h │ │ ├── StdRequestType.h │ │ ├── StreamCallbacks.h │ │ ├── USBMode.h │ │ ├── USBTask.c │ │ ├── USBTask.h │ │ └── USBTask.o │ │ ├── LowLevel │ │ ├── DevChapter9.c │ │ ├── DevChapter9.h │ │ ├── DevChapter9.o │ │ ├── Device.h │ │ ├── Endpoint.c │ │ ├── Endpoint.h │ │ ├── Endpoint.o │ │ ├── Host.c │ │ ├── Host.h │ │ ├── Host.o │ │ ├── HostChapter9.c │ │ ├── HostChapter9.h │ │ ├── HostChapter9.o │ │ ├── LowLevel.c │ │ ├── LowLevel.h │ │ ├── LowLevel.o │ │ ├── OTG.h │ │ ├── Pipe.c │ │ ├── Pipe.h │ │ ├── Pipe.o │ │ ├── Template │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ ├── Template_Endpoint_RW.c │ │ │ └── Template_Pipe_RW.c │ │ ├── USBInterrupt.c │ │ ├── USBInterrupt.h │ │ └── USBInterrupt.o │ │ └── USB.h ├── License.txt ├── ManPages │ ├── AboutLUFA.txt │ ├── AlternativeStacks.txt │ ├── Author.jpg │ ├── BuildingLinkableLibraries.txt │ ├── ChangeLog.txt │ ├── CompileTimeTokens.txt │ ├── CompilingApps.txt │ ├── ConfiguringApps.txt │ ├── DevelopingWithLUFA.txt │ ├── DeviceSupport.txt │ ├── DirectorySummaries.txt │ ├── Donating.txt │ ├── FutureChanges.txt │ ├── GettingStarted.txt │ ├── Groups.txt │ ├── LUFA.png │ ├── LUFAPoweredProjects.txt │ ├── LUFAvsAtmelStack.txt │ ├── LibraryApps.txt │ ├── LibraryResources.txt │ ├── LicenceInfo.txt │ ├── MainPage.txt │ ├── MigrationInformation.txt │ ├── ProgrammingApps.txt │ ├── SchedulerOverview.txt │ ├── SoftwareBootloaderJump.txt │ ├── VIDAndPIDValues.txt │ ├── WhyUseLUFA.txt │ └── WritingBoardDrivers.txt ├── Scheduler │ ├── Scheduler.c │ └── Scheduler.h ├── Version.h └── makefile ├── Projects ├── AVRISP-MKII │ ├── AVRISP.c │ ├── AVRISP.h │ ├── AVRISP.txt │ ├── Descriptors.c │ ├── Descriptors.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 │ └── makefile ├── Benito │ ├── Benito Programmer.inf │ ├── Benito.c │ ├── Benito.h │ ├── Benito.txt │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── Lib │ │ ├── RingBuff.c │ │ └── RingBuff.h │ └── makefile ├── Incomplete │ ├── MIDIToneGenerator │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── MIDIToneGenerator.c │ │ ├── MIDIToneGenerator.h │ │ └── makefile │ └── StandaloneProgrammer │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── DiskDevice.c │ │ ├── DiskDevice.h │ │ ├── DiskHost.c │ │ ├── DiskHost.h │ │ ├── Lib │ │ ├── DataflashManager.c │ │ ├── DataflashManager.h │ │ ├── PetiteFATFs │ │ │ ├── 00readme.txt │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ ├── integer.h │ │ │ ├── pff.c │ │ │ └── pff.h │ │ ├── ProgrammerConfig.c │ │ ├── ProgrammerConfig.h │ │ ├── SCSI.c │ │ └── SCSI.h │ │ ├── Standalone Programmer.inf │ │ ├── StandaloneProgrammer.c │ │ ├── StandaloneProgrammer.h │ │ └── makefile ├── LEDNotifier │ ├── Board │ │ └── LEDs.h │ ├── 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 │ ├── 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 │ └── makefile ├── Magstripe │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── Lib │ │ ├── CircularBitBuffer.c │ │ ├── CircularBitBuffer.h │ │ └── MagstripeHW.h │ ├── Magstripe.c │ ├── Magstripe.h │ ├── Magstripe.txt │ └── makefile ├── MissileLauncher │ ├── ConfigDescriptor.c │ ├── ConfigDescriptor.h │ ├── Doxygen.conf │ ├── MissileLauncher.c │ ├── MissileLauncher.h │ ├── MissileLauncher.txt │ └── makefile ├── RelayBoard │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── RelayBoard.c │ ├── RelayBoard.h │ ├── RelayBoard.txt │ └── makefile ├── TemperatureDataLogger │ ├── 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 │ │ ├── README.txt │ │ └── TempLoggerHostApp.csproj │ ├── TemperatureDataLogger.txt │ └── makefile ├── USBtoSerial │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── LUFA USBtoSerial.inf │ ├── Lib │ │ ├── RingBuff.c │ │ └── RingBuff.h │ ├── USBtoSerial.c │ ├── USBtoSerial.h │ ├── USBtoSerial.txt │ └── makefile ├── Webserver │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── Lib │ │ ├── DHCPClientApp.c │ │ ├── DHCPClientApp.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 │ └── makefile ├── XPLAINBridge │ ├── AVRISPDescriptors.c │ ├── AVRISPDescriptors.h │ ├── Doxygen.conf │ ├── LUFA XPLAIN Bridge.inf │ ├── Lib │ │ ├── RingBuff.c │ │ ├── RingBuff.h │ │ ├── SoftUART.c │ │ └── SoftUART.h │ ├── USARTDescriptors.c │ ├── USARTDescriptors.h │ ├── XPLAINBridge.c │ ├── XPLAINBridge.h │ ├── XPLAINBridge.txt │ └── makefile └── makefile ├── README.txt └── makefile /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/README.md -------------------------------------------------------------------------------- /hardware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/hardware/README -------------------------------------------------------------------------------- /hardware/ninja.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/hardware/ninja.brd -------------------------------------------------------------------------------- /hardware/ninja.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/hardware/ninja.sch -------------------------------------------------------------------------------- /precompiled/ninja-arduino-diecemilia-atmega168.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/precompiled/ninja-arduino-diecemilia-atmega168.hex -------------------------------------------------------------------------------- /precompiled/ninja-leonard-pirate-atmega32u4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/precompiled/ninja-leonard-pirate-atmega32u4.hex -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/bus.c -------------------------------------------------------------------------------- /src/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/bus.h -------------------------------------------------------------------------------- /src/bus_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/bus_commands.c -------------------------------------------------------------------------------- /src/bus_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/bus_i2c.c -------------------------------------------------------------------------------- /src/bus_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/bus_i2c.h -------------------------------------------------------------------------------- /src/bus_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/bus_spi.c -------------------------------------------------------------------------------- /src/bus_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/bus_spi.h -------------------------------------------------------------------------------- /src/command_bitbang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/command_bitbang.c -------------------------------------------------------------------------------- /src/command_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/command_bitbang.h -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/config-arduino.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/config-arduino.mk -------------------------------------------------------------------------------- /src/config-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/config-dev.mk -------------------------------------------------------------------------------- /src/config-leonard_pirate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/config-leonard_pirate.mk -------------------------------------------------------------------------------- /src/config-pro_mini.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/config-pro_mini.mk -------------------------------------------------------------------------------- /src/config-teensy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/config-teensy.mk -------------------------------------------------------------------------------- /src/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/config.mk -------------------------------------------------------------------------------- /src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/console.c -------------------------------------------------------------------------------- /src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/console.h -------------------------------------------------------------------------------- /src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/cpu.c -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/global_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/global_commands.c -------------------------------------------------------------------------------- /src/global_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/global_commands.h -------------------------------------------------------------------------------- /src/hw_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_i2c.c -------------------------------------------------------------------------------- /src/hw_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_i2c.h -------------------------------------------------------------------------------- /src/hw_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_led.c -------------------------------------------------------------------------------- /src/hw_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_led.h -------------------------------------------------------------------------------- /src/hw_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_spi.c -------------------------------------------------------------------------------- /src/hw_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_spi.h -------------------------------------------------------------------------------- /src/hw_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_uart.c -------------------------------------------------------------------------------- /src/hw_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/hw_uart.h -------------------------------------------------------------------------------- /src/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/jtag.c -------------------------------------------------------------------------------- /src/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/jtag.h -------------------------------------------------------------------------------- /src/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/led.c -------------------------------------------------------------------------------- /src/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/led.h -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/menu.h -------------------------------------------------------------------------------- /src/ninja.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/ninja.c -------------------------------------------------------------------------------- /src/ninja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/ninja.h -------------------------------------------------------------------------------- /src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/parse.c -------------------------------------------------------------------------------- /src/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/parse.h -------------------------------------------------------------------------------- /src/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/rules.mk -------------------------------------------------------------------------------- /src/tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/tick.c -------------------------------------------------------------------------------- /src/tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/tick.h -------------------------------------------------------------------------------- /src/usbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev.c -------------------------------------------------------------------------------- /src/usbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev.h -------------------------------------------------------------------------------- /src/usbdev_avrisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev_avrisp.c -------------------------------------------------------------------------------- /src/usbdev_avrisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev_avrisp.h -------------------------------------------------------------------------------- /src/usbdev_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev_cdc.c -------------------------------------------------------------------------------- /src/usbdev_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev_cdc.h -------------------------------------------------------------------------------- /src/usbdev_jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev_jtag.c -------------------------------------------------------------------------------- /src/usbdev_jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/usbdev_jtag.h -------------------------------------------------------------------------------- /src/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/watchdog.c -------------------------------------------------------------------------------- /src/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/src/watchdog.h -------------------------------------------------------------------------------- /test/i2c/24LC16B-breadboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/test/i2c/24LC16B-breadboard.jpg -------------------------------------------------------------------------------- /test/i2c/24LC16B-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/test/i2c/24LC16B-pinout.png -------------------------------------------------------------------------------- /test/i2c/24LC16B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/test/i2c/24LC16B.txt -------------------------------------------------------------------------------- /test/spi/._MCP23S17-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/test/spi/._MCP23S17-pinout.png -------------------------------------------------------------------------------- /test/spi/MCP23S17-breadboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/test/spi/MCP23S17-breadboard.jpg -------------------------------------------------------------------------------- /test/spi/MCP23S17-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/test/spi/MCP23S17-pinout.png -------------------------------------------------------------------------------- /test/spi/MCP23S17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/test/spi/MCP23S17.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/BootloaderCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/BootloaderCDC.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/BootloaderCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/BootloaderCDC.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/BootloaderCDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/BootloaderCDC.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/LUFA CDC Bootloader.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/LUFA CDC Bootloader.inf -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/CDC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/CDC/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/DFU/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/DFU/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/DFU/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/DFU/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/DFU/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Bootloaders/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Bootloaders/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/AudioInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/AudioInput.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/AudioInput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/AudioInput.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioInput/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/AudioOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/AudioOutput.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/AudioOutput.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/AudioOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/AudioOutput.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/AudioOutput/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/DualVirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/DualVirtualSerial/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/GenericHID.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/GenericHID.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/GenericHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/GenericHID.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/GenericHID/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Joystick.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/Joystick.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Joystick/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Keyboard/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/KeyboardMouse/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/MIDI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/MIDI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/MIDI.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MIDI/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/MassStorage.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/MassStorage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/MassStorage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/MassStorage.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorage/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/MassStorageKeyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/MassStorageKeyboard/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Mouse.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Mouse.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/Mouse.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/Mouse/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/LUFA RNDIS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/LUFA RNDIS.inf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/DHCP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/Ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/Ethernet.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/Ethernet.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/ICMP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/RNDISEthernet/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerial/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerialMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/VirtualSerialMouse/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/ClassDriver/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Lib/SideshowCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Lib/SideshowCommon.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Lib/SideshowCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Lib/SideshowCommon.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Sideshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Sideshow.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Sideshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/Sideshow.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/Incomplete/Sideshow/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/AudioInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/AudioInput.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/AudioInput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/AudioInput.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioInput/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/AudioOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/AudioOutput.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/AudioOutput.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/AudioOutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/AudioOutput.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/AudioOutput/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/DualVirtualSerial/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/GenericHID.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/GenericHID.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/GenericHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/GenericHID.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/GenericHID/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Joystick.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Joystick/Joystick.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Joystick/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Keyboard/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/KeyboardMouse.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/KeyboardMouse/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MIDI/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MIDI/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MIDI/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MIDI/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MIDI/MIDI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MIDI/MIDI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MIDI/MIDI.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MIDI/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Lib/SCSI_Codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/Lib/SCSI_Codes.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/MassStorage.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/MassStorage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/MassStorage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/MassStorage.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/MassStorage/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Mouse.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Mouse.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Mouse/Mouse.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/Mouse/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/RNDISEthernet.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/RNDISEthernet/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/VirtualSerial.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/VirtualSerial/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/LowLevel/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Device/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Device/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/DualRole/ClassDriver/MouseHostDevice/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/DualRole/ClassDriver/MouseHostDevice/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/DualRole/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/DualRole/ClassDriver/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/DualRole/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/DualRole/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/KeyboardHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/KeyboardHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MIDIHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MassStorageHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MassStorageHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MassStorageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MassStorageHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MouseHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/MouseHostWithParser/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/MouseHostWithParser/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/PrinterHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/PrinterHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/PrinterHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/PrinterHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/PrinterHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/RNDISEthernetHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/RNDISEthernetHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/RNDISEthernetHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/RNDISEthernetHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/StillImageHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/StillImageHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/StillImageHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/VirtualSerialHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/VirtualSerialHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/VirtualSerialHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/VirtualSerialHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/ClassDriver/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/BluetoothHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/BluetoothHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/BluetoothHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/BluetoothHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/Incomplete/BluetoothHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/GenericHIDHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/GenericHIDHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/JoystickHostWithParser/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/JoystickHostWithParser/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHostWithParser/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/KeyboardHostWithParser/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MIDIHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/Lib/SCSI_Codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/Lib/SCSI_Codes.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MassStorageHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/MouseHostWithParser/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/MouseHostWithParser/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/PrinterHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/PrinterHost.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/PrinterHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/PrinterHost.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/PrinterHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/PrinterHost.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/PrinterHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/RNDISEthernetHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/RNDISEthernetHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/RNDISEthernetHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/RNDISEthernetHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/StillImageHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/StillImageHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/StillImageHost/Lib/PIMACodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/StillImageHost/Lib/PIMACodes.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/StillImageHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/VirtualSerialHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/VirtualSerialHost/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/LowLevel/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/Host/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/Host/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Demos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Demos/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA.pnproj -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Common/Common.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Doxygen.css -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/ATAVRUSBRF01/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/ATAVRUSBRF01/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/BENITO/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/BENITO/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/EVK527/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/EVK527/AT45DB321C.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/EVK527/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/EVK527/Dataflash.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/EVK527/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/EVK527/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK525/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK525/AT45DB321C.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK525/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK525/Dataflash.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK525/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK525/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK526/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK526/AT45DB642D.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK526/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK526/Dataflash.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK526/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/STK526/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/TEENSY/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/AT45DB642D.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/Joystick.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/USBKEY/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/USBTINYMKII/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/USBTINYMKII/Buttons.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/XPLAIN/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/XPLAIN/AT45DB642D.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Board/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Board/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/AVRU4U6U7/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/AVRU4U6U7/ADC.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/AVRU4U6U7/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/AVRU4U6U7/TWI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/Serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/Serial.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/SerialStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/SerialStream.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/SerialStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/SerialStream.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/TWI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/TWI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Audio.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/CDC.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/Audio.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/CDC.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/HID.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/MIDI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/MassStorage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/Printer.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/RNDIS.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/RNDISConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/RNDISConstants.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/StillImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Common/StillImage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/Audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/Audio.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/Audio.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/CDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/CDC.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/CDC.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/CDC.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/CDC.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/HID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/HID.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/HID.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MIDI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MIDI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MassStorage.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/MassStorage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/RNDIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/RNDIS.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Device/RNDIS.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/HID.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/CDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/CDC.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/CDC.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/CDC.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/CDC.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HID.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HID.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HIDParser.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HIDParser.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/HIDReportData.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MIDI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MIDI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MassStorage.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/MassStorage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/Printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/Printer.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/Printer.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/RNDIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/RNDIS.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/RNDIS.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/StillImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/StillImage.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/StillImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Host/StillImage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/MIDI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/MassStorage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/Printer.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/RNDIS.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/Class/StillImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/Class/StillImage.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/Events.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/Events.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/Events.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/Events.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/StdDescriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/StdRequestType.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/StreamCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/StreamCallbacks.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBMode.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBTask.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBTask.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBTask.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/HighLevel/USBTask.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/DevChapter9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/DevChapter9.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/DevChapter9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/DevChapter9.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/DevChapter9.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/DevChapter9.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Device.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Endpoint.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Endpoint.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Endpoint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Endpoint.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Host.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Host.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Host.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Host.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/HostChapter9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/HostChapter9.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/HostChapter9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/HostChapter9.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/HostChapter9.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/HostChapter9.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/LowLevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/LowLevel.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/LowLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/LowLevel.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/LowLevel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/LowLevel.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/OTG.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Pipe.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Pipe.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Pipe.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/Pipe.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/USBInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/USBInterrupt.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/USBInterrupt.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/USBInterrupt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/LowLevel/USBInterrupt.o -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/License.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/AboutLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/AboutLUFA.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/AlternativeStacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/AlternativeStacks.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/Author.jpg -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/BuildingLinkableLibraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/BuildingLinkableLibraries.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/ChangeLog.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/CompilingApps.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/DeviceSupport.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/Donating.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/FutureChanges.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/GettingStarted.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/Groups.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/LUFA.png -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/LUFAvsAtmelStack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/LUFAvsAtmelStack.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/LibraryApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/LibraryApps.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/LibraryResources.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/LicenceInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/LicenceInfo.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/MainPage.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/MigrationInformation.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/SchedulerOverview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/SchedulerOverview.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/SoftwareBootloaderJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/SoftwareBootloaderJump.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/WhyUseLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/WhyUseLUFA.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/ManPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/ManPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Scheduler/Scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Scheduler/Scheduler.c -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Scheduler/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Scheduler/Scheduler.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/Version.h -------------------------------------------------------------------------------- /third-party/LUFA100513/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/LUFA/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/AVRISP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/AVRISP.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/AVRISP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/AVRISP.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/AVRISP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/AVRISP.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2Protocol.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2Protocol.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2ProtocolConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2ProtocolConstants.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2ProtocolParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/V2ProtocolParams.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/AVRISP-MKII/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/AVRISP-MKII/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Benito Programmer.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Benito Programmer.inf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Benito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Benito.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Benito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Benito.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Benito.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Benito.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Lib/RingBuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Lib/RingBuff.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/Lib/RingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/Lib/RingBuff.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Benito/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Benito/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Incomplete/MIDIToneGenerator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Incomplete/MIDIToneGenerator/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Incomplete/StandaloneProgrammer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Incomplete/StandaloneProgrammer/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/Board/LEDs.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.csproj -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/CPUUsageApp/Program.cs -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/HotmailNotifierApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/HotmailNotifierApp/Program.cs -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/LEDMixer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/LEDMixer.csproj -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/LEDMixer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/LEDMixer.resx -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LEDMixerApp/Program.cs -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LEDNotifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LEDNotifier.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LEDNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LEDNotifier.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LEDNotifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LEDNotifier.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/LUFA LED Notifier.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/LUFA LED Notifier.inf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/LEDNotifier/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/LEDNotifier/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Lib/CircularBitBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Lib/CircularBitBuffer.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Lib/CircularBitBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Lib/CircularBitBuffer.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Lib/MagstripeHW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Lib/MagstripeHW.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Magstripe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Magstripe.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Magstripe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Magstripe.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/Magstripe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/Magstripe.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Magstripe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Magstripe/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/MissileLauncher/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/MissileLauncher/ConfigDescriptor.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/MissileLauncher/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/MissileLauncher/ConfigDescriptor.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/MissileLauncher/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/MissileLauncher/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/MissileLauncher/MissileLauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/MissileLauncher/MissileLauncher.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/MissileLauncher/MissileLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/MissileLauncher/MissileLauncher.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/MissileLauncher/MissileLauncher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/MissileLauncher/MissileLauncher.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/MissileLauncher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/MissileLauncher/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/RelayBoard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/RelayBoard/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/RelayBoard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/RelayBoard/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/RelayBoard/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/RelayBoard/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/RelayBoard/RelayBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/RelayBoard/RelayBoard.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/RelayBoard/RelayBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/RelayBoard/RelayBoard.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/RelayBoard/RelayBoard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/RelayBoard/RelayBoard.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/RelayBoard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/RelayBoard/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/DS1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/DS1307.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/DS1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/DS1307.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/SCSI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/Lib/SCSI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/TempDataLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/TempDataLogger.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/TempDataLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/TempDataLogger.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/TemperatureDataLogger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/TemperatureDataLogger/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/LUFA USBtoSerial.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/LUFA USBtoSerial.inf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/Lib/RingBuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/Lib/RingBuff.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/Lib/RingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/Lib/RingBuff.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/USBtoSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/USBtoSerial.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/USBtoSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/USBtoSerial.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/USBtoSerial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/USBtoSerial.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/USBtoSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/USBtoSerial/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Descriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Descriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/DHCPClientApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/DHCPClientApp.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/DHCPClientApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/DHCPClientApp.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/DataflashManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/DataflashManager.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/DataflashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/DataflashManager.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/FATFs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/FATFs/00readme.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/HTTPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/HTTPServerApp.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/HTTPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/HTTPServerApp.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/SCSI.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/SCSI.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/TELNETServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/TELNETServerApp.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/TELNETServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/TELNETServerApp.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uIPManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uIPManagement.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uIPManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uIPManagement.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/clock.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/clock.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/timer.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/timer.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/uip-split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/uip-split.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/uip-split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/uip-split.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/uip.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/uip.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/uip_arp.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/uip_arp.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Lib/uip/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Lib/uip/uipopt.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/USBDeviceMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/USBDeviceMode.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/USBDeviceMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/USBDeviceMode.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/USBHostMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/USBHostMode.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/USBHostMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/USBHostMode.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Webserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Webserver.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Webserver.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/Webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/Webserver.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/Webserver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/Webserver/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/AVRISPDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/AVRISPDescriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/AVRISPDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/AVRISPDescriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/Doxygen.conf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/Lib/RingBuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/Lib/RingBuff.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/Lib/RingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/Lib/RingBuff.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/Lib/SoftUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/Lib/SoftUART.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/Lib/SoftUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/Lib/SoftUART.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/USARTDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/USARTDescriptors.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/USARTDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/USARTDescriptors.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/XPLAINBridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/XPLAINBridge.c -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/XPLAINBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/XPLAINBridge.h -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/XPLAINBridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/XPLAINBridge.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/XPLAINBridge/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/XPLAINBridge/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/Projects/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/Projects/makefile -------------------------------------------------------------------------------- /third-party/LUFA100513/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/README.txt -------------------------------------------------------------------------------- /third-party/LUFA100513/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobyjaffey/bus-ninja/HEAD/third-party/LUFA100513/makefile --------------------------------------------------------------------------------