├── 3DPmain.c ├── 3DPro.c ├── 3DPro.h ├── 3DProasm.S ├── Descriptors.c ├── Descriptors.h ├── Doxygen.conf ├── FeedbackTester ├── Feedback.csproj ├── Feedback.sln ├── Feedback.suo ├── UpgradeLog.XML ├── bin │ ├── Debug │ │ ├── Feedback.exe │ │ ├── Feedback.pdb │ │ ├── Feedback.vshost.exe │ │ └── Feedback.vshost.exe.manifest │ └── Release │ │ ├── Feedback.exe │ │ ├── Feedback.vshost.exe │ │ └── Feedback.vshost.exe.manifest ├── csfeedback.jpg ├── frmMain.cs ├── frmMain.resx └── obj │ ├── Debug │ ├── Feedback.csproj.FileListAbsolute.txt │ ├── Feedback.csproj.GenerateResource.Cache │ ├── Feedback.exe │ ├── Feedback.frmMain.resources │ ├── Feedback.pdb │ └── ResolveAssemblyReference.cache │ └── Release │ ├── Feedback.csproj.FileListAbsolute.txt │ ├── Feedback.csproj.GenerateResource.Cache │ ├── Feedback.exe │ └── Feedback.frmMain.resources ├── Joystick.aps ├── Joystick.c ├── Joystick.h ├── LUFA DualVirtualSerial-wheel.inf ├── LUFA DualVirtualSerial.inf ├── LUFA-120219 ├── LUFA.pnproj ├── LUFA │ ├── CodeTemplates │ │ ├── DriverStubs │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── LUFAConfig.h │ │ ├── makefile_template.avr8 │ │ ├── makefile_template.uc3 │ │ └── makefile_template.xmega │ ├── Common │ │ ├── ArchitectureSpecific.h │ │ ├── Architectures.h │ │ ├── Attributes.h │ │ ├── BoardTypes.h │ │ ├── Common.h │ │ ├── CompilerSpecific.h │ │ └── Endianness.h │ ├── Doxygen.conf │ ├── DoxygenPages │ │ ├── AboutLUFA.txt │ │ ├── AlternativeStacks.txt │ │ ├── Author.jpg │ │ ├── BuildingLinkableLibraries.txt │ │ ├── ChangeLog.txt │ │ ├── CompileTimeTokens.txt │ │ ├── CompilingApps.txt │ │ ├── ConfiguringApps.txt │ │ ├── DevelopingWithLUFA.txt │ │ ├── DeviceSupport.txt │ │ ├── DirectorySummaries.txt │ │ ├── Donating.txt │ │ ├── FutureChanges.txt │ │ ├── GettingStarted.txt │ │ ├── Groups.txt │ │ ├── LUFA.png │ │ ├── LUFAPoweredProjects.txt │ │ ├── LUFA_thumb.png │ │ ├── LUFAvsAtmelStack.txt │ │ ├── LibraryApps.txt │ │ ├── LibraryResources.txt │ │ ├── LicenseInfo.txt │ │ ├── MainPage.txt │ │ ├── MigrationInformation.txt │ │ ├── ProgrammingApps.txt │ │ ├── SoftwareBootloaderJump.txt │ │ ├── VIDAndPIDValues.txt │ │ ├── WhyUseLUFA.txt │ │ ├── WritingBoardDrivers.txt │ │ └── footer.htm │ ├── Drivers │ │ ├── Board │ │ │ ├── AVR8 │ │ │ │ ├── ADAFRUITU4 │ │ │ │ │ └── LEDs.h │ │ │ │ ├── ATAVRUSBRF01 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BENITO │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BLACKCAT │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BUI │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BUMBLEB │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── CULV3 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK527 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── JMDBU2 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MAXIMUS │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MICROPENDOUS │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MICROSIN162 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MINIMUS │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEX162 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── RZUSBSTICK │ │ │ │ │ └── LEDs.h │ │ │ │ ├── SPARKFUN8U2 │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STK525 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STK526 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── TEENSY │ │ │ │ │ └── LEDs.h │ │ │ │ ├── TUL │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── UDIP │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── UNO │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USB2AX │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBFOO │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBKEY │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBTINYMKII │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ └── XPLAIN │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ └── LEDs.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ ├── LEDs.h │ │ │ ├── Temperature.c │ │ │ ├── Temperature.h │ │ │ ├── UC3 │ │ │ │ ├── EVK1100 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK1101 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ └── EVK1104 │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ └── XMEGA │ │ │ │ ├── A3BU_XPLAINED │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ └── LEDs.h │ │ │ │ └── B1_XPLAINED │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ └── LEDs.h │ │ ├── Misc │ │ │ ├── AT45DB321C.h │ │ │ ├── AT45DB642D.h │ │ │ ├── RingBuffer.h │ │ │ └── TerminalCodes.h │ │ ├── Peripheral │ │ │ ├── ADC.h │ │ │ ├── AVR8 │ │ │ │ ├── ADC_AVR8.h │ │ │ │ ├── SPI_AVR8.h │ │ │ │ ├── SerialSPI_AVR8.h │ │ │ │ ├── Serial_AVR8.c │ │ │ │ ├── Serial_AVR8.h │ │ │ │ ├── TWI_AVR8.c │ │ │ │ └── TWI_AVR8.h │ │ │ ├── SPI.h │ │ │ ├── Serial.h │ │ │ ├── SerialSPI.h │ │ │ ├── TWI.h │ │ │ └── XMEGA │ │ │ │ ├── SPI_XMEGA.h │ │ │ │ ├── SerialSPI_XMEGA.h │ │ │ │ ├── Serial_XMEGA.c │ │ │ │ └── Serial_XMEGA.h │ │ └── USB │ │ │ ├── Class │ │ │ ├── AndroidAccessoryClass.h │ │ │ ├── AudioClass.h │ │ │ ├── CDCClass.h │ │ │ ├── Common │ │ │ │ ├── AndroidAccessoryClassCommon.h │ │ │ │ ├── AudioClassCommon.h │ │ │ │ ├── CDCClassCommon.h │ │ │ │ ├── HIDClassCommon.h │ │ │ │ ├── HIDParser.c │ │ │ │ ├── HIDParser.h │ │ │ │ ├── HIDReportData.h │ │ │ │ ├── MIDIClassCommon.h │ │ │ │ ├── MassStorageClassCommon.h │ │ │ │ ├── PrinterClassCommon.h │ │ │ │ ├── RNDISClassCommon.h │ │ │ │ └── StillImageClassCommon.h │ │ │ ├── Device │ │ │ │ ├── AudioClassDevice.c │ │ │ │ ├── AudioClassDevice.h │ │ │ │ ├── CDCClassDevice.c │ │ │ │ ├── CDCClassDevice.h │ │ │ │ ├── HIDClassDevice.c │ │ │ │ ├── HIDClassDevice.h │ │ │ │ ├── MIDIClassDevice.c │ │ │ │ ├── MIDIClassDevice.h │ │ │ │ ├── MassStorageClassDevice.c │ │ │ │ ├── MassStorageClassDevice.h │ │ │ │ ├── RNDISClassDevice.c │ │ │ │ └── RNDISClassDevice.h │ │ │ ├── HIDClass.h │ │ │ ├── Host │ │ │ │ ├── AndroidAccessoryClassHost.c │ │ │ │ ├── AndroidAccessoryClassHost.h │ │ │ │ ├── AudioClassHost.c │ │ │ │ ├── AudioClassHost.h │ │ │ │ ├── CDCClassHost.c │ │ │ │ ├── CDCClassHost.h │ │ │ │ ├── HIDClassHost.c │ │ │ │ ├── HIDClassHost.h │ │ │ │ ├── MIDIClassHost.c │ │ │ │ ├── MIDIClassHost.h │ │ │ │ ├── MassStorageClassHost.c │ │ │ │ ├── MassStorageClassHost.h │ │ │ │ ├── PrinterClassHost.c │ │ │ │ ├── PrinterClassHost.h │ │ │ │ ├── RNDISClassHost.c │ │ │ │ ├── RNDISClassHost.h │ │ │ │ ├── StillImageClassHost.c │ │ │ │ └── StillImageClassHost.h │ │ │ ├── MIDIClass.h │ │ │ ├── MassStorageClass.h │ │ │ ├── PrinterClass.h │ │ │ ├── RNDISClass.h │ │ │ └── StillImageClass.h │ │ │ ├── Core │ │ │ ├── AVR8 │ │ │ │ ├── Device_AVR8.c │ │ │ │ ├── Device_AVR8.h │ │ │ │ ├── EndpointStream_AVR8.c │ │ │ │ ├── EndpointStream_AVR8.h │ │ │ │ ├── Endpoint_AVR8.c │ │ │ │ ├── Endpoint_AVR8.h │ │ │ │ ├── Host_AVR8.c │ │ │ │ ├── Host_AVR8.h │ │ │ │ ├── OTG_AVR8.h │ │ │ │ ├── PipeStream_AVR8.c │ │ │ │ ├── PipeStream_AVR8.h │ │ │ │ ├── Pipe_AVR8.c │ │ │ │ ├── Pipe_AVR8.h │ │ │ │ ├── Template │ │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ │ └── Template_Pipe_RW.c │ │ │ │ ├── USBController_AVR8.c │ │ │ │ ├── USBController_AVR8.h │ │ │ │ ├── USBInterrupt_AVR8.c │ │ │ │ └── USBInterrupt_AVR8.h │ │ │ ├── ConfigDescriptor.c │ │ │ ├── ConfigDescriptor.h │ │ │ ├── Device.h │ │ │ ├── DeviceStandardReq.c │ │ │ ├── DeviceStandardReq.h │ │ │ ├── Endpoint.h │ │ │ ├── EndpointStream.h │ │ │ ├── Events.c │ │ │ ├── Events.h │ │ │ ├── Host.h │ │ │ ├── HostStandardReq.c │ │ │ ├── HostStandardReq.h │ │ │ ├── OTG.h │ │ │ ├── Pipe.h │ │ │ ├── PipeStream.h │ │ │ ├── StdDescriptors.h │ │ │ ├── StdRequestType.h │ │ │ ├── UC3 │ │ │ │ ├── Device_UC3.c │ │ │ │ ├── Device_UC3.h │ │ │ │ ├── EndpointStream_UC3.c │ │ │ │ ├── EndpointStream_UC3.h │ │ │ │ ├── Endpoint_UC3.c │ │ │ │ ├── Endpoint_UC3.h │ │ │ │ ├── Host_UC3.c │ │ │ │ ├── Host_UC3.h │ │ │ │ ├── PipeStream_UC3.c │ │ │ │ ├── PipeStream_UC3.h │ │ │ │ ├── Pipe_UC3.c │ │ │ │ ├── Pipe_UC3.h │ │ │ │ ├── Template │ │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ │ └── Template_Pipe_RW.c │ │ │ │ ├── USBController_UC3.c │ │ │ │ ├── USBController_UC3.h │ │ │ │ ├── USBInterrupt_UC3.c │ │ │ │ └── USBInterrupt_UC3.h │ │ │ ├── USBController.h │ │ │ ├── USBInterrupt.h │ │ │ ├── USBMode.h │ │ │ ├── USBTask.c │ │ │ ├── USBTask.h │ │ │ └── XMEGA │ │ │ │ ├── Device_XMEGA.c │ │ │ │ ├── Device_XMEGA.h │ │ │ │ ├── EndpointStream_XMEGA.c │ │ │ │ ├── EndpointStream_XMEGA.h │ │ │ │ ├── Endpoint_XMEGA.c │ │ │ │ ├── Endpoint_XMEGA.h │ │ │ │ ├── Host_XMEGA.c │ │ │ │ ├── PipeStream_XMEGA.c │ │ │ │ ├── Pipe_XMEGA.c │ │ │ │ ├── Template │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ └── Template_Endpoint_RW.c │ │ │ │ ├── USBController_XMEGA.c │ │ │ │ ├── USBController_XMEGA.h │ │ │ │ ├── USBInterrupt_XMEGA.c │ │ │ │ └── USBInterrupt_XMEGA.h │ │ │ └── USB.h │ ├── License.txt │ ├── Platform │ │ ├── UC3 │ │ │ ├── ClockManagement.h │ │ │ ├── Exception.S │ │ │ ├── InterruptManagement.c │ │ │ └── InterruptManagement.h │ │ └── XMEGA │ │ │ └── ClockManagement.h │ ├── Scheduler │ │ ├── Scheduler.c │ │ └── Scheduler.h │ ├── Version.h │ └── makefile ├── README.txt └── makefile ├── README.md ├── adaptffbjoy-circuit-tinycad.dsn ├── debug.c ├── debug.h ├── downloads ├── adaptffbjoy-breadboard.jpg ├── adaptffbjoy-circuit.png ├── adaptffbjoy-r54-Clean.hex └── adaptffbjoy-r54.hex ├── ffb-pro.c ├── ffb-pro.h ├── ffb-wheel.c ├── ffb-wheel.h ├── ffb.c ├── ffb.h ├── includes.h ├── joystick.aws ├── main.c ├── main.h ├── makefile └── usb_hid.h /3DPmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/3DPmain.c -------------------------------------------------------------------------------- /3DPro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/3DPro.c -------------------------------------------------------------------------------- /3DPro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/3DPro.h -------------------------------------------------------------------------------- /3DProasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/3DProasm.S -------------------------------------------------------------------------------- /Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/Descriptors.c -------------------------------------------------------------------------------- /Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/Descriptors.h -------------------------------------------------------------------------------- /Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/Doxygen.conf -------------------------------------------------------------------------------- /FeedbackTester/Feedback.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/Feedback.csproj -------------------------------------------------------------------------------- /FeedbackTester/Feedback.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/Feedback.sln -------------------------------------------------------------------------------- /FeedbackTester/Feedback.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/Feedback.suo -------------------------------------------------------------------------------- /FeedbackTester/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/UpgradeLog.XML -------------------------------------------------------------------------------- /FeedbackTester/bin/Debug/Feedback.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/bin/Debug/Feedback.exe -------------------------------------------------------------------------------- /FeedbackTester/bin/Debug/Feedback.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/bin/Debug/Feedback.pdb -------------------------------------------------------------------------------- /FeedbackTester/bin/Debug/Feedback.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/bin/Debug/Feedback.vshost.exe -------------------------------------------------------------------------------- /FeedbackTester/bin/Debug/Feedback.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/bin/Debug/Feedback.vshost.exe.manifest -------------------------------------------------------------------------------- /FeedbackTester/bin/Release/Feedback.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/bin/Release/Feedback.exe -------------------------------------------------------------------------------- /FeedbackTester/bin/Release/Feedback.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/bin/Release/Feedback.vshost.exe -------------------------------------------------------------------------------- /FeedbackTester/bin/Release/Feedback.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/bin/Release/Feedback.vshost.exe.manifest -------------------------------------------------------------------------------- /FeedbackTester/csfeedback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/csfeedback.jpg -------------------------------------------------------------------------------- /FeedbackTester/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/frmMain.cs -------------------------------------------------------------------------------- /FeedbackTester/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/frmMain.resx -------------------------------------------------------------------------------- /FeedbackTester/obj/Debug/Feedback.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Debug/Feedback.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /FeedbackTester/obj/Debug/Feedback.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Debug/Feedback.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /FeedbackTester/obj/Debug/Feedback.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Debug/Feedback.exe -------------------------------------------------------------------------------- /FeedbackTester/obj/Debug/Feedback.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Debug/Feedback.frmMain.resources -------------------------------------------------------------------------------- /FeedbackTester/obj/Debug/Feedback.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Debug/Feedback.pdb -------------------------------------------------------------------------------- /FeedbackTester/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /FeedbackTester/obj/Release/Feedback.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Release/Feedback.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /FeedbackTester/obj/Release/Feedback.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Release/Feedback.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /FeedbackTester/obj/Release/Feedback.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Release/Feedback.exe -------------------------------------------------------------------------------- /FeedbackTester/obj/Release/Feedback.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/FeedbackTester/obj/Release/Feedback.frmMain.resources -------------------------------------------------------------------------------- /Joystick.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/Joystick.aps -------------------------------------------------------------------------------- /Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/Joystick.c -------------------------------------------------------------------------------- /Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/Joystick.h -------------------------------------------------------------------------------- /LUFA DualVirtualSerial-wheel.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA DualVirtualSerial-wheel.inf -------------------------------------------------------------------------------- /LUFA DualVirtualSerial.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA DualVirtualSerial.inf -------------------------------------------------------------------------------- /LUFA-120219/LUFA.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA.pnproj -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/LUFAConfig.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/makefile_template.avr8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/makefile_template.avr8 -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/makefile_template.uc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/makefile_template.uc3 -------------------------------------------------------------------------------- /LUFA-120219/LUFA/CodeTemplates/makefile_template.xmega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/CodeTemplates/makefile_template.xmega -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Common/ArchitectureSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Common/ArchitectureSpecific.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Common/Architectures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Common/Architectures.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Common/Common.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Common/CompilerSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Common/CompilerSpecific.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Common/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Common/Endianness.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Doxygen.conf -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/AboutLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/AboutLUFA.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/AlternativeStacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/AlternativeStacks.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/Author.jpg -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/BuildingLinkableLibraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/BuildingLinkableLibraries.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/ChangeLog.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/CompilingApps.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/DeviceSupport.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/Donating.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/FutureChanges.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/GettingStarted.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/Groups.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/LUFA.png -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/LUFA_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/LUFA_thumb.png -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/LUFAvsAtmelStack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/LUFAvsAtmelStack.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/LibraryApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/LibraryApps.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/LibraryResources.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/LicenseInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/LicenseInfo.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/MainPage.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/MigrationInformation.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/SoftwareBootloaderJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/SoftwareBootloaderJump.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/WhyUseLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/WhyUseLUFA.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/DoxygenPages/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/DoxygenPages/footer.htm -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/BUI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/BUI/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK525/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/STK526/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/TUL/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/TUL/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/TUL/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/TUL/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/UNO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/UNO/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Misc/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Misc/AT45DB321C.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Misc/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Misc/AT45DB642D.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Misc/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Misc/RingBuffer.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/SerialSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/SerialSPI.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/AudioClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/CDCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/CDCClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/AndroidAccessoryClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/AndroidAccessoryClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDParser.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDParser.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/HIDReportData.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/MassStorageClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/MassStorageClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Common/StillImageClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Common/StillImageClassCommon.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/HIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/HIDClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/AudioClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/AudioClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/AudioClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/AudioClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/CDCClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/CDCClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/CDCClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/CDCClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/HIDClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/HIDClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/HIDClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/HIDClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/MIDIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/MIDIClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/MassStorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/MassStorageClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/PrinterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/PrinterClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/RNDISClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/RNDISClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Class/StillImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Class/StillImageClass.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Pipe_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/Template/Template_Pipe_RW.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/ConfigDescriptor.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/ConfigDescriptor.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/Device.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/DeviceStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/DeviceStandardReq.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/DeviceStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/DeviceStandardReq.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/Endpoint.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/EndpointStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/EndpointStream.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/Events.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/Events.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/Host.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/HostStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/HostStandardReq.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/HostStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/HostStandardReq.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/OTG.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/Pipe.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/PipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/PipeStream.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/StdDescriptors.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/StdRequestType.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Device_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Device_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Device_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Device_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Host_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Host_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Host_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Host_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Pipe_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/Template/Template_Pipe_RW.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/USBController.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/USBInterrupt.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/USBMode.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/USBTask.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/USBTask.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/License.txt -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Platform/UC3/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Platform/UC3/ClockManagement.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Platform/UC3/Exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Platform/UC3/Exception.S -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Platform/UC3/InterruptManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Platform/UC3/InterruptManagement.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Platform/UC3/InterruptManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Platform/UC3/InterruptManagement.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Platform/XMEGA/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Platform/XMEGA/ClockManagement.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Scheduler/Scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Scheduler/Scheduler.c -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Scheduler/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Scheduler/Scheduler.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/Version.h -------------------------------------------------------------------------------- /LUFA-120219/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/LUFA/makefile -------------------------------------------------------------------------------- /LUFA-120219/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/README.txt -------------------------------------------------------------------------------- /LUFA-120219/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/LUFA-120219/makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/README.md -------------------------------------------------------------------------------- /adaptffbjoy-circuit-tinycad.dsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/adaptffbjoy-circuit-tinycad.dsn -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/debug.c -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/debug.h -------------------------------------------------------------------------------- /downloads/adaptffbjoy-breadboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/downloads/adaptffbjoy-breadboard.jpg -------------------------------------------------------------------------------- /downloads/adaptffbjoy-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/downloads/adaptffbjoy-circuit.png -------------------------------------------------------------------------------- /downloads/adaptffbjoy-r54-Clean.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/downloads/adaptffbjoy-r54-Clean.hex -------------------------------------------------------------------------------- /downloads/adaptffbjoy-r54.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/downloads/adaptffbjoy-r54.hex -------------------------------------------------------------------------------- /ffb-pro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/ffb-pro.c -------------------------------------------------------------------------------- /ffb-pro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/ffb-pro.h -------------------------------------------------------------------------------- /ffb-wheel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/ffb-wheel.c -------------------------------------------------------------------------------- /ffb-wheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/ffb-wheel.h -------------------------------------------------------------------------------- /ffb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/ffb.c -------------------------------------------------------------------------------- /ffb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/ffb.h -------------------------------------------------------------------------------- /includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/includes.h -------------------------------------------------------------------------------- /joystick.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/joystick.aws -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/main.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/makefile -------------------------------------------------------------------------------- /usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayBee-git/adapt-ffb-joy/HEAD/usb_hid.h --------------------------------------------------------------------------------