├── LICENSE.md ├── README.md ├── dist ├── arduino_mouse_16u2.hex └── arduino_mouse_328p_57600.hex └── src ├── arduino_mouse_16u2 ├── Board │ └── LEDs.h ├── Descriptors.c ├── Descriptors.h ├── Doxygen.conf ├── Lib │ └── LightweightRingBuff.h ├── Mouse.c ├── Mouse.h ├── Mouse.txt └── makefile ├── arduino_mouse_328p └── arduino_mouse_328p.ino └── libraries ├── USB_Host_Shield_2.0 ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── BTD.cpp ├── BTD.h ├── BTHID.cpp ├── BTHID.h ├── PS3BT.cpp ├── PS3BT.h ├── PS3Enums.h ├── PS3USB.cpp ├── PS3USB.h ├── PS4BT.h ├── PS4Parser.cpp ├── PS4Parser.h ├── PS4USB.h ├── PSBuzz.cpp ├── PSBuzz.h ├── README.md ├── SPP.cpp ├── SPP.h ├── Usb.cpp ├── Usb.h ├── UsbCore.h ├── Wii.cpp ├── Wii.h ├── WiiCameraReadme.md ├── XBOXOLD.cpp ├── XBOXOLD.h ├── XBOXONE.cpp ├── XBOXONE.h ├── XBOXRECV.cpp ├── XBOXRECV.h ├── XBOXUSB.cpp ├── XBOXUSB.h ├── address.h ├── adk.cpp ├── adk.h ├── avrpins.h ├── cdc_XR21B1411.cpp ├── cdc_XR21B1411.h ├── cdcacm.cpp ├── cdcacm.h ├── cdcftdi.cpp ├── cdcftdi.h ├── cdcprolific.cpp ├── cdcprolific.h ├── confdescparser.h ├── controllerEnums.h ├── examples │ ├── Bluetooth │ │ ├── BTHID │ │ │ ├── BTHID.ino │ │ │ ├── KeyboardParser.h │ │ │ └── MouseParser.h │ │ ├── PS3BT │ │ │ └── PS3BT.ino │ │ ├── PS3Multi │ │ │ └── PS3Multi.ino │ │ ├── PS3SPP │ │ │ └── PS3SPP.ino │ │ ├── PS4BT │ │ │ └── PS4BT.ino │ │ ├── SPP │ │ │ └── SPP.ino │ │ ├── SPPMulti │ │ │ └── SPPMulti.ino │ │ ├── Wii │ │ │ └── Wii.ino │ │ ├── WiiBalanceBoard │ │ │ └── WiiBalanceBoard.ino │ │ ├── WiiIRCamera │ │ │ └── WiiIRCamera.ino │ │ ├── WiiMulti │ │ │ └── WiiMulti.ino │ │ └── WiiUProController │ │ │ └── WiiUProController.ino │ ├── HID │ │ ├── SRWS1 │ │ │ ├── SRWS1.cpp │ │ │ ├── SRWS1.h │ │ │ └── SRWS1.ino │ │ ├── USBHIDBootKbd │ │ │ └── USBHIDBootKbd.ino │ │ ├── USBHIDBootKbdAndMouse │ │ │ └── USBHIDBootKbdAndMouse.ino │ │ ├── USBHIDBootMouse │ │ │ └── USBHIDBootMouse.ino │ │ ├── USBHIDJoystick │ │ │ ├── USBHIDJoystick.ino │ │ │ ├── hidjoystickrptparser.cpp │ │ │ └── hidjoystickrptparser.h │ │ ├── USBHIDMultimediaKbd │ │ │ └── USBHIDMultimediaKbd.ino │ │ ├── USBHID_desc │ │ │ ├── USBHID_desc.ino │ │ │ └── pgmstrings.h │ │ ├── le3dp │ │ │ ├── le3dp.ino │ │ │ ├── le3dp_rptparser.cpp │ │ │ └── le3dp_rptparser.h │ │ └── scale │ │ │ ├── scale.ino │ │ │ ├── scale_rptparser.cpp │ │ │ └── scale_rptparser.h │ ├── PS3USB │ │ └── PS3USB.ino │ ├── PS4USB │ │ └── PS4USB.ino │ ├── PSBuzz │ │ └── PSBuzz.ino │ ├── USBH_MIDI │ │ ├── USBH_MIDI_dump │ │ │ └── USBH_MIDI_dump.ino │ │ ├── USB_MIDI_converter │ │ │ └── USB_MIDI_converter.ino │ │ ├── USB_MIDI_converter_multi │ │ │ └── USB_MIDI_converter_multi.ino │ │ ├── bidirectional_converter │ │ │ └── bidirectional_converter.ino │ │ └── eVY1_sample │ │ │ └── eVY1_sample.ino │ ├── USB_desc │ │ ├── USB_desc.ino │ │ └── pgmstrings.h │ ├── Xbox │ │ ├── XBOXOLD │ │ │ └── XBOXOLD.ino │ │ ├── XBOXONE │ │ │ └── XBOXONE.ino │ │ ├── XBOXRECV │ │ │ └── XBOXRECV.ino │ │ └── XBOXUSB │ │ │ └── XBOXUSB.ino │ ├── acm │ │ └── acm_terminal │ │ │ ├── acm_terminal.ino │ │ │ └── pgmstrings.h │ ├── adk │ │ ├── ArduinoBlinkLED │ │ │ └── ArduinoBlinkLED.ino │ │ ├── adk_barcode │ │ │ └── adk_barcode.ino │ │ ├── demokit_20 │ │ │ └── demokit_20.ino │ │ ├── term_test │ │ │ └── term_test.ino │ │ └── term_time │ │ │ └── term_time.ino │ ├── board_qc │ │ └── board_qc.ino │ ├── cdc_XR21B1411 │ │ └── XR_terminal │ │ │ └── XR_terminal.ino │ ├── ftdi │ │ └── USBFTDILoopback │ │ │ ├── USBFTDILoopback.ino │ │ │ └── pgmstrings.h │ ├── hub_demo │ │ ├── hub_demo.ino │ │ └── pgmstrings.h │ ├── max_LCD │ │ └── max_LCD.ino │ ├── pl2303 │ │ ├── pl2303_gprs_terminal │ │ │ └── pl2303_gprs_terminal.ino │ │ ├── pl2303_gps │ │ │ └── pl2303_gps.ino │ │ ├── pl2303_tinygps │ │ │ └── pl2303_tinygps.ino │ │ └── pl2303_xbee_terminal │ │ │ └── pl2303_xbee_terminal.ino │ └── testusbhostFAT │ │ ├── Makefile │ │ ├── README.md │ │ └── testusbhostFAT.ino ├── gpl2.txt ├── hexdump.h ├── hidboot.cpp ├── hidboot.h ├── hidcomposite.cpp ├── hidcomposite.h ├── hidescriptorparser.cpp ├── hidescriptorparser.h ├── hiduniversal.cpp ├── hiduniversal.h ├── hidusagestr.h ├── hidusagetitlearrays.cpp ├── keywords.txt ├── library.json ├── library.properties ├── macros.h ├── masstorage.cpp ├── masstorage.h ├── max3421e.h ├── max_LCD.cpp ├── max_LCD.h ├── message.cpp ├── message.h ├── parsetools.cpp ├── parsetools.h ├── printhex.h ├── settings.h ├── sink_parser.h ├── usb_ch9.h ├── usbh_midi.cpp ├── usbh_midi.h ├── usbhid.cpp ├── usbhid.h ├── usbhost.h ├── usbhub.cpp ├── usbhub.h ├── version_helper.h └── xboxEnums.h └── lufa-lib-master ├── 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 ├── Incomplete │ └── MIDI │ │ ├── BootloaderMIDI.c │ │ ├── BootloaderMIDI.h │ │ ├── Descriptors.c │ │ ├── Descriptors.h │ │ ├── Doxygen.conf │ │ ├── JavaHost │ │ ├── BIN2BOOT.java │ │ └── MIDIMessageReceiver.java │ │ ├── MIDI.c │ │ └── makefile ├── TeensyHID │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── TeensyHID.c │ ├── TeensyHID.h │ ├── TeensyHID.txt │ └── 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 │ │ │ ├── Lib │ │ │ ├── BluetoothACLPackets.c │ │ │ ├── BluetoothACLPackets.h │ │ │ ├── BluetoothClassCodes.h │ │ │ ├── BluetoothHCICommands.c │ │ │ ├── BluetoothHCICommands.h │ │ │ ├── BluetoothStack.c │ │ │ └── BluetoothStack.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 │ ├── BoardTypes.h │ ├── Common.h │ └── FunctionAttributes.h ├── Doxygen.conf ├── DriverStubs │ ├── Buttons.h │ ├── Dataflash.h │ ├── Joystick.h │ └── LEDs.h ├── Drivers │ ├── Board │ │ ├── ATAVRUSBRF01 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── Temperature.c │ │ ├── Temperature.h │ │ ├── USBKEY │ │ │ ├── AT45DB642D.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ └── XPLAIN │ │ │ ├── AT45DB642D.h │ │ │ ├── Dataflash.h │ │ │ └── LEDs.h │ ├── Misc │ │ └── TerminalCodes.h │ ├── Peripheral │ │ ├── ADC.h │ │ ├── AVRU4U6U7 │ │ │ ├── ADC.h │ │ │ ├── SPI.h │ │ │ ├── Serial.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 │ │ │ ├── HID.c │ │ │ ├── HID.h │ │ │ ├── MIDI.c │ │ │ ├── MIDI.h │ │ │ ├── MassStorage.c │ │ │ ├── MassStorage.h │ │ │ ├── RNDIS.c │ │ │ └── RNDIS.h │ │ ├── HID.h │ │ ├── Host │ │ │ ├── CDC.c │ │ │ ├── CDC.h │ │ │ ├── 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 │ │ ├── Events.c │ │ ├── Events.h │ │ ├── StdDescriptors.h │ │ ├── StdRequestType.h │ │ ├── StreamCallbacks.h │ │ ├── USBInterrupt.c │ │ ├── USBInterrupt.h │ │ ├── USBMode.h │ │ ├── USBTask.c │ │ └── USBTask.h │ │ ├── LowLevel │ │ ├── DevChapter9.c │ │ ├── DevChapter9.h │ │ ├── Device.h │ │ ├── Endpoint.c │ │ ├── Endpoint.h │ │ ├── Host.c │ │ ├── Host.h │ │ ├── HostChapter9.c │ │ ├── HostChapter9.h │ │ ├── LowLevel.c │ │ ├── LowLevel.h │ │ ├── OTG.h │ │ ├── Pipe.c │ │ ├── Pipe.h │ │ └── Template │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ ├── Template_Endpoint_RW.c │ │ │ └── Template_Pipe_RW.c │ │ └── USB.h ├── 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.gif │ ├── LUFAPoweredProjects.txt │ ├── LUFAvsAtmelStack.txt │ ├── LibraryApps.txt │ ├── LibraryResources.txt │ ├── Licence.txt │ ├── MainPage.txt │ ├── MigrationInformation.txt │ ├── ProgrammingApps.txt │ ├── SchedulerOverview.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 │ ├── Board │ │ └── LEDs.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── Lib │ │ ├── RingBuff.c │ │ └── RingBuff.h │ └── makefile ├── Incomplete │ └── 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 ├── 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 /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/README.md -------------------------------------------------------------------------------- /dist/arduino_mouse_16u2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/dist/arduino_mouse_16u2.hex -------------------------------------------------------------------------------- /dist/arduino_mouse_328p_57600.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/dist/arduino_mouse_328p_57600.hex -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Board/LEDs.h -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Descriptors.c -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Descriptors.h -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Doxygen.conf -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Lib/LightweightRingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Lib/LightweightRingBuff.h -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Mouse.c -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Mouse.h -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/Mouse.txt -------------------------------------------------------------------------------- /src/arduino_mouse_16u2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_16u2/makefile -------------------------------------------------------------------------------- /src/arduino_mouse_328p/arduino_mouse_328p.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/arduino_mouse_328p/arduino_mouse_328p.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/.gitattributes -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.zip 3 | *.rar 4 | build/ -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/.gitmodules -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/.travis.yml -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/BTD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/BTD.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/BTD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/BTD.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/BTHID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/BTHID.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/BTHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/BTHID.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS3BT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS3BT.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS3BT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS3BT.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS3Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS3Enums.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS3USB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS3USB.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS3USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS3USB.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS4BT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS4BT.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS4Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS4Parser.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS4Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS4Parser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PS4USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PS4USB.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PSBuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PSBuzz.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/PSBuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/PSBuzz.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/README.md -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/SPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/SPP.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/SPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/SPP.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/Usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/Usb.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/Usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/Usb.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/UsbCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/UsbCore.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/Wii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/Wii.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/Wii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/Wii.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/WiiCameraReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/WiiCameraReadme.md -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXOLD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXOLD.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXOLD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXOLD.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXONE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXONE.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXONE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXONE.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXRECV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXRECV.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXRECV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXRECV.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXUSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXUSB.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/XBOXUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/XBOXUSB.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/address.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/adk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/adk.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/adk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/adk.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/avrpins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/avrpins.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdc_XR21B1411.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdc_XR21B1411.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdc_XR21B1411.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdc_XR21B1411.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdcacm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdcacm.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdcacm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdcacm.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdcftdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdcftdi.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdcftdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdcftdi.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdcprolific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdcprolific.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/cdcprolific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/cdcprolific.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/confdescparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/confdescparser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/controllerEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/controllerEnums.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/BTHID/BTHID.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/BTHID/BTHID.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/BTHID/KeyboardParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/BTHID/KeyboardParser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/BTHID/MouseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/BTHID/MouseParser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS3BT/PS3BT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS3BT/PS3BT.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS3Multi/PS3Multi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS3Multi/PS3Multi.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS3SPP/PS3SPP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS3SPP/PS3SPP.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS4BT/PS4BT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/PS4BT/PS4BT.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/SPP/SPP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/SPP/SPP.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/SPPMulti/SPPMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/SPPMulti/SPPMulti.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/Wii/Wii.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/Wii/Wii.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/WiiIRCamera/WiiIRCamera.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/WiiIRCamera/WiiIRCamera.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/WiiMulti/WiiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Bluetooth/WiiMulti/WiiMulti.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/SRWS1/SRWS1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/SRWS1/SRWS1.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/SRWS1/SRWS1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/SRWS1/SRWS1.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/SRWS1/SRWS1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/SRWS1/SRWS1.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/USBHIDBootKbd/USBHIDBootKbd.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/USBHIDBootKbd/USBHIDBootKbd.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/USBHIDJoystick/USBHIDJoystick.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/USBHIDJoystick/USBHIDJoystick.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/USBHID_desc/USBHID_desc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/USBHID_desc/USBHID_desc.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/USBHID_desc/pgmstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/USBHID_desc/pgmstrings.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/le3dp/le3dp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/le3dp/le3dp.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/le3dp/le3dp_rptparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/le3dp/le3dp_rptparser.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/le3dp/le3dp_rptparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/le3dp/le3dp_rptparser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/scale/scale.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/scale/scale.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/scale/scale_rptparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/scale/scale_rptparser.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/HID/scale/scale_rptparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/HID/scale/scale_rptparser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/PS3USB/PS3USB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/PS3USB/PS3USB.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/PS4USB/PS4USB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/PS4USB/PS4USB.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/PSBuzz/PSBuzz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/PSBuzz/PSBuzz.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/USBH_MIDI/eVY1_sample/eVY1_sample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/USBH_MIDI/eVY1_sample/eVY1_sample.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/USB_desc/USB_desc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/USB_desc/USB_desc.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/USB_desc/pgmstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/USB_desc/pgmstrings.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXOLD/XBOXOLD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXOLD/XBOXOLD.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXONE/XBOXONE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXONE/XBOXONE.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXRECV/XBOXRECV.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXRECV/XBOXRECV.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXUSB/XBOXUSB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/Xbox/XBOXUSB/XBOXUSB.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/acm/acm_terminal/acm_terminal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/acm/acm_terminal/acm_terminal.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/acm/acm_terminal/pgmstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/acm/acm_terminal/pgmstrings.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/adk/adk_barcode/adk_barcode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/adk/adk_barcode/adk_barcode.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/adk/demokit_20/demokit_20.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/adk/demokit_20/demokit_20.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/adk/term_test/term_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/adk/term_test/term_test.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/adk/term_time/term_time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/adk/term_time/term_time.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/board_qc/board_qc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/board_qc/board_qc.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/ftdi/USBFTDILoopback/pgmstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/ftdi/USBFTDILoopback/pgmstrings.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/hub_demo/hub_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/hub_demo/hub_demo.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/hub_demo/pgmstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/hub_demo/pgmstrings.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/max_LCD/max_LCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/max_LCD/max_LCD.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/pl2303/pl2303_gps/pl2303_gps.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/pl2303/pl2303_gps/pl2303_gps.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/testusbhostFAT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/testusbhostFAT/Makefile -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/testusbhostFAT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/testusbhostFAT/README.md -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/examples/testusbhostFAT/testusbhostFAT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/examples/testusbhostFAT/testusbhostFAT.ino -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/gpl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/gpl2.txt -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hexdump.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidboot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidboot.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidboot.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidcomposite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidcomposite.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidcomposite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidcomposite.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidescriptorparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidescriptorparser.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidescriptorparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidescriptorparser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hiduniversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hiduniversal.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hiduniversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hiduniversal.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidusagestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidusagestr.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/hidusagetitlearrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/hidusagetitlearrays.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/keywords.txt -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/library.json -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/library.properties -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/macros.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/masstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/masstorage.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/masstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/masstorage.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/max3421e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/max3421e.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/max_LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/max_LCD.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/max_LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/max_LCD.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/message.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/message.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/parsetools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/parsetools.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/parsetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/parsetools.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/printhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/printhex.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/settings.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/sink_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/sink_parser.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usb_ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usb_ch9.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usbh_midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usbh_midi.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usbh_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usbh_midi.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usbhid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usbhid.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usbhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usbhid.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usbhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usbhost.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usbhub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usbhub.cpp -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/usbhub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/usbhub.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/version_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/version_helper.h -------------------------------------------------------------------------------- /src/libraries/USB_Host_Shield_2.0/xboxEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/USB_Host_Shield_2.0/xboxEnums.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/BootloaderCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/BootloaderCDC.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/BootloaderCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/BootloaderCDC.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/BootloaderCDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/BootloaderCDC.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/LUFA CDC Bootloader.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/LUFA CDC Bootloader.inf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/CDC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/CDC/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/DFU/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/DFU/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/DFU/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/DFU/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/DFU/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/BootloaderMIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/BootloaderMIDI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/BootloaderMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/BootloaderMIDI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/JavaHost/BIN2BOOT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/JavaHost/BIN2BOOT.java -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/MIDI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/Incomplete/MIDI/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/TeensyHID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/TeensyHID/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/TeensyHID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/TeensyHID/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/TeensyHID/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/TeensyHID/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/TeensyHID/TeensyHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/TeensyHID/TeensyHID.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/TeensyHID/TeensyHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/TeensyHID/TeensyHID.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/TeensyHID/TeensyHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/TeensyHID/TeensyHID.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/TeensyHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/TeensyHID/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Bootloaders/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Bootloaders/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/AudioInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/AudioInput.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioInput/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/AudioOutput/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/GenericHID.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/GenericHID.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/GenericHID/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Joystick.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/Joystick.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Joystick/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Keyboard/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/KeyboardMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/KeyboardMouse/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/MIDI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/MIDI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/MIDI.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MIDI/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/MassStorage/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Mouse.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Mouse.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/Mouse.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/Mouse/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/ARP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/IP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/Lib/UDP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/RNDISEthernet/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/VirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/VirtualSerial/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/ClassDriver/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Sideshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Sideshow.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Sideshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/Sideshow.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/Incomplete/Sideshow/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/AudioInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/AudioInput.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/AudioInput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/AudioInput.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioInput/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/AudioOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/AudioOutput.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/AudioOutput.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/AudioOutput/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/DualVirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/DualVirtualSerial/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/GenericHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/GenericHID.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/GenericHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/GenericHID.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/GenericHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/GenericHID.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/GenericHID/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Joystick.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/Joystick.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Joystick/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Keyboard.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Keyboard.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/Keyboard.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Keyboard/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/KeyboardMouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/KeyboardMouse/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/KeyboardMouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/KeyboardMouse/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/MIDI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/MIDI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/MIDI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/MIDI.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MIDI/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/MassStorage.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/MassStorage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/MassStorage/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Mouse.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Mouse.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/Mouse.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/Mouse/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/RNDISEthernet/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/VirtualSerial/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/VirtualSerial/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/VirtualSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/VirtualSerial/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/LowLevel/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Device/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Device/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/DualRole/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/DualRole/ClassDriver/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/DualRole/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/DualRole/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/KeyboardHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/KeyboardHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/KeyboardHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MIDIHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MassStorageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MassStorageHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/MouseHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/PrinterHost.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/PrinterHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/PrinterHost.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/PrinterHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/StillImageHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/ClassDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/ClassDriver/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/Incomplete/BluetoothHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/Incomplete/BluetoothHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/GenericHIDHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/GenericHIDHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/GenericHIDHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/GenericHIDHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/KeyboardHost.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/KeyboardHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/MIDIHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/MIDIHost.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/MIDIHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/MIDIHost.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/MIDIHost.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MIDIHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MassStorageHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MassStorageHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MassStorageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MassStorageHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/ConfigDescriptor.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/MouseHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/MouseHost.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/MouseHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/MouseHost.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/MouseHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/MouseHost.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHostWithParser/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/MouseHostWithParser/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/PrinterHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/PrinterHost.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/PrinterHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/PrinterHost.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/PrinterHost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/PrinterHost.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/PrinterHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/RNDISEthernetHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/RNDISEthernetHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/StillImageHost/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/StillImageHost/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/StillImageHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/StillImageHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/VirtualSerialHost/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/VirtualSerialHost/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/LowLevel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/LowLevel/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/Host/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/Host/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Demos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Demos/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA.pnproj -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Common/Common.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Common/FunctionAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Common/FunctionAttributes.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/ATAVRUSBRF01/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/ATAVRUSBRF01/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/AT45DB321C.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/Dataflash.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/EVK527/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/AT45DB321C.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/Dataflash.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK525/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/AT45DB642D.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/Dataflash.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/STK526/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/AT45DB642D.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/Buttons.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/Joystick.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/USBKEY/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/XPLAIN/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/XPLAIN/AT45DB642D.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Board/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Board/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/ADC.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/SPI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/Serial.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/AVRU4U6U7/TWI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/Serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/Serial.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/SerialStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/SerialStream.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/SerialStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/SerialStream.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/TWI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/TWI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Audio.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/CDC.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/Audio.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/CDC.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/HID.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/MIDI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/MassStorage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/Printer.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/RNDIS.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/RNDISConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/RNDISConstants.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/StillImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Common/StillImage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/Audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/Audio.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/Audio.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/CDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/CDC.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/CDC.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/HID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/HID.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/HID.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MIDI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MIDI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MassStorage.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/MassStorage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/RNDIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/RNDIS.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Device/RNDIS.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/HID.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/CDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/CDC.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/CDC.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HID.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HID.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HIDParser.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HIDParser.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/HIDReportData.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MIDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MIDI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MIDI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MassStorage.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/MassStorage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/Printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/Printer.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/Printer.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/RNDIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/RNDIS.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/RNDIS.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/StillImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/StillImage.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/StillImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Host/StillImage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/MIDI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/MassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/MassStorage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/Printer.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/RNDIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/RNDIS.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/StillImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/Class/StillImage.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/ConfigDescriptor.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/Events.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/Events.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/StdDescriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/StdRequestType.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/StreamCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/StreamCallbacks.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBInterrupt.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBInterrupt.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBMode.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBTask.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/HighLevel/USBTask.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/DevChapter9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/DevChapter9.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/DevChapter9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/DevChapter9.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Device.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Endpoint.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Endpoint.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Host.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Host.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/HostChapter9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/HostChapter9.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/HostChapter9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/HostChapter9.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/LowLevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/LowLevel.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/LowLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/LowLevel.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/OTG.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Pipe.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/LowLevel/Pipe.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/AboutLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/AboutLUFA.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/AlternativeStacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/AlternativeStacks.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/Author.jpg -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/BuildingLinkableLibraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/BuildingLinkableLibraries.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/ChangeLog.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/CompilingApps.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/DeviceSupport.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/Donating.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/FutureChanges.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/GettingStarted.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/Groups.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/LUFA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/LUFA.gif -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/LUFAvsAtmelStack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/LUFAvsAtmelStack.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/LibraryApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/LibraryApps.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/LibraryResources.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/Licence.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/MainPage.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/MigrationInformation.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/SchedulerOverview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/SchedulerOverview.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/WhyUseLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/WhyUseLUFA.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/ManPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/ManPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Scheduler/Scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Scheduler/Scheduler.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Scheduler/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Scheduler/Scheduler.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/Version.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/LUFA/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/AVRISP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/AVRISP.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/AVRISP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/AVRISP.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/AVRISP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/AVRISP.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2Protocol.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2Protocol.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2ProtocolConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2ProtocolConstants.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2ProtocolParams.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2ProtocolParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/V2ProtocolParams.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/AVRISP-MKII/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/AVRISP-MKII/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Benito Programmer.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Benito Programmer.inf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Benito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Benito.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Benito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Benito.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Benito.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Benito.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Board/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Lib/RingBuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Lib/RingBuff.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/Lib/RingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/Lib/RingBuff.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Benito/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Benito/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/Board/LEDs.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/CPUUsageApp/CPUMonitor.resx -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/CPUUsageApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/CPUUsageApp/Program.cs -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/LEDMixer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/LEDMixer.csproj -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/LEDMixer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/LEDMixer.resx -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDMixerApp/Program.cs -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDNotifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDNotifier.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDNotifier.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDNotifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LEDNotifier.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/LUFA LED Notifier.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/LUFA LED Notifier.inf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/LEDNotifier/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/LEDNotifier/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Lib/CircularBitBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Lib/CircularBitBuffer.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Lib/CircularBitBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Lib/CircularBitBuffer.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Lib/MagstripeHW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Lib/MagstripeHW.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Magstripe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Magstripe.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Magstripe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Magstripe.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/Magstripe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/Magstripe.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Magstripe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Magstripe/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/MissileLauncher/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/MissileLauncher/ConfigDescriptor.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/MissileLauncher/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/MissileLauncher/ConfigDescriptor.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/MissileLauncher/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/MissileLauncher/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/MissileLauncher/MissileLauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/MissileLauncher/MissileLauncher.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/MissileLauncher/MissileLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/MissileLauncher/MissileLauncher.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/MissileLauncher/MissileLauncher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/MissileLauncher/MissileLauncher.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/MissileLauncher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/MissileLauncher/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/DS1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/DS1307.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/DS1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/DS1307.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/SCSI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/Lib/SCSI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/TempDataLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/TempDataLogger.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/TempDataLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/TempDataLogger.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/TemperatureDataLogger/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/LUFA USBtoSerial.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/LUFA USBtoSerial.inf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/Lib/RingBuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/Lib/RingBuff.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/Lib/RingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/Lib/RingBuff.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/USBtoSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/USBtoSerial.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/USBtoSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/USBtoSerial.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/USBtoSerial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/USBtoSerial.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/USBtoSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/USBtoSerial/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Descriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Descriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/DHCPClientApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/DHCPClientApp.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/DHCPClientApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/DHCPClientApp.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/DataflashManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/DataflashManager.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/DataflashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/DataflashManager.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/00readme.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/diskio.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/diskio.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/ff.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/ff.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/ffconf.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/FATFs/integer.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/HTTPServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/HTTPServerApp.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/HTTPServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/HTTPServerApp.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/SCSI.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/SCSI.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/TELNETServerApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/TELNETServerApp.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/TELNETServerApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/TELNETServerApp.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uIPManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uIPManagement.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uIPManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uIPManagement.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/clock.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/clock.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/timer.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/timer.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip-split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip-split.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip-split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip-split.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip_arp.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uip_arp.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Lib/uip/uipopt.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/USBDeviceMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/USBDeviceMode.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/USBDeviceMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/USBDeviceMode.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/USBHostMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/USBHostMode.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/USBHostMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/USBHostMode.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Webserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Webserver.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Webserver.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/Webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/Webserver.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/Webserver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/Webserver/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/AVRISPDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/AVRISPDescriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/AVRISPDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/AVRISPDescriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/Doxygen.conf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/RingBuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/RingBuff.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/RingBuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/RingBuff.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/SoftUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/SoftUART.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/SoftUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/Lib/SoftUART.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/USARTDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/USARTDescriptors.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/USARTDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/USARTDescriptors.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/XPLAINBridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/XPLAINBridge.c -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/XPLAINBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/XPLAINBridge.h -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/XPLAINBridge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/XPLAINBridge.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/XPLAINBridge/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/XPLAINBridge/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/Projects/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/Projects/makefile -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/README.txt -------------------------------------------------------------------------------- /src/libraries/lufa-lib-master/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonghm0808/Pubg_Mouse_Aide/HEAD/src/libraries/lufa-lib-master/makefile --------------------------------------------------------------------------------