├── .gitignore ├── Readme ├── hardware ├── uuni.brd └── uuni.sch └── software ├── microprocessor ├── Config │ └── LUFAConfig.h ├── Descriptors.c ├── Descriptors.h ├── LUFA │ ├── Build │ │ ├── HID_EEPROM_Loader │ │ │ ├── HID_EEPROM_Loader.c │ │ │ └── makefile │ │ ├── lufa_atprogram.mk │ │ ├── lufa_avrdude.mk │ │ ├── lufa_build.mk │ │ ├── lufa_core.mk │ │ ├── lufa_cppcheck.mk │ │ ├── lufa_dfu.mk │ │ ├── lufa_doxygen.mk │ │ ├── lufa_hid.mk │ │ └── lufa_sources.mk │ ├── CodeTemplates │ │ ├── DeviceTemplate │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── DeviceApplication.c │ │ │ ├── DeviceApplication.h │ │ │ └── asf.xml │ │ ├── DriverStubs │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ └── LEDs.h │ │ ├── HostTemplate │ │ │ ├── HostApplication.c │ │ │ ├── HostApplication.h │ │ │ └── asf.xml │ │ ├── LUFAConfig.h │ │ └── makefile_template │ ├── Common │ │ ├── ArchitectureSpecific.h │ │ ├── Architectures.h │ │ ├── Attributes.h │ │ ├── BoardTypes.h │ │ ├── Common.h │ │ ├── CompilerSpecific.h │ │ └── Endianness.h │ ├── Doxygen.conf │ ├── DoxygenPages │ │ ├── BuildSystem.txt │ │ ├── BuildingLinkableLibraries.txt │ │ ├── ChangeLog.txt │ │ ├── CompileTimeTokens.txt │ │ ├── CompilingApps.txt │ │ ├── ConfiguringApps.txt │ │ ├── DevelopingWithLUFA.txt │ │ ├── DeviceSupport.txt │ │ ├── DirectorySummaries.txt │ │ ├── Donating.txt │ │ ├── ExportingLibrary.txt │ │ ├── FutureChanges.txt │ │ ├── GettingStarted.txt │ │ ├── Groups.txt │ │ ├── Images │ │ │ ├── AS5_AS6_Import │ │ │ │ ├── AS5_AS6_Import_Step1.png │ │ │ │ ├── AS5_AS6_Import_Step2.png │ │ │ │ ├── AS5_AS6_Import_Step3.png │ │ │ │ ├── AS5_AS6_Import_Step4.png │ │ │ │ ├── AS5_AS6_Import_Step5_1.png │ │ │ │ ├── AS5_AS6_Import_Step5_2.png │ │ │ │ └── AS5_AS6_Import_Step5_3.png │ │ │ ├── Author.jpg │ │ │ ├── LUFA.png │ │ │ └── LUFA_thumb.png │ │ ├── KnownIssues.txt │ │ ├── LUFAPoweredProjects.txt │ │ ├── LibraryResources.txt │ │ ├── LicenseInfo.txt │ │ ├── MainPage.txt │ │ ├── MigrationInformation.txt │ │ ├── ProgrammingApps.txt │ │ ├── SoftwareBootloaderJump.txt │ │ ├── Style │ │ │ ├── Footer.htm │ │ │ └── Style.css │ │ ├── VIDAndPIDValues.txt │ │ └── WritingBoardDrivers.txt │ ├── Drivers │ │ ├── Board │ │ │ ├── AVR8 │ │ │ │ ├── ADAFRUITU4 │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── ATAVRUSBRF01 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BENITO │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BIGMULTIO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BLACKCAT │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BUI │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── BUMBLEB │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── CULV3 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── DUCE │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK527 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── JMDBU2 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── LEONARDO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MAXIMUS │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MICROPENDOUS │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MICROSIN162 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MINIMUS │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── MULTIO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEX162 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEX32U4 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEXISPMK2 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── OLIMEXT32U4 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── RZUSBSTICK │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── SPARKFUN8U2 │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STANGE_ISP │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STK525 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── STK526 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── TEENSY │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── TUL │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── UDIP │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── UNO │ │ │ │ │ ├── Board.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USB2AX │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBFOO │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBKEY │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── USBTINYMKII │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ └── XPLAIN │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Dataflash.h │ │ │ │ │ └── LEDs.h │ │ │ ├── Board.h │ │ │ ├── Buttons.h │ │ │ ├── Dataflash.h │ │ │ ├── Joystick.h │ │ │ ├── LEDs.h │ │ │ ├── Temperature.c │ │ │ ├── Temperature.h │ │ │ ├── UC3 │ │ │ │ ├── EVK1100 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK1101 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ ├── Joystick.h │ │ │ │ │ └── LEDs.h │ │ │ │ ├── EVK1104 │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ │ └── UC3A3_XPLAINED │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ └── XMEGA │ │ │ │ ├── A3BU_XPLAINED │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ └── LEDs.h │ │ │ │ └── B1_XPLAINED │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ └── LEDs.h │ │ ├── Misc │ │ │ ├── .RingBuffer.h.swp │ │ │ ├── AT45DB321C.h │ │ │ ├── AT45DB642D.h │ │ │ ├── RingBuffer.h │ │ │ └── TerminalCodes.h │ │ ├── Peripheral │ │ │ ├── ADC.h │ │ │ ├── AVR8 │ │ │ │ ├── ADC_AVR8.h │ │ │ │ ├── SPI_AVR8.h │ │ │ │ ├── SerialSPI_AVR8.h │ │ │ │ ├── Serial_AVR8.c │ │ │ │ ├── Serial_AVR8.h │ │ │ │ ├── TWI_AVR8.c │ │ │ │ └── TWI_AVR8.h │ │ │ ├── SPI.h │ │ │ ├── Serial.h │ │ │ ├── SerialSPI.h │ │ │ ├── TWI.h │ │ │ └── XMEGA │ │ │ │ ├── SPI_XMEGA.h │ │ │ │ ├── SerialSPI_XMEGA.h │ │ │ │ ├── Serial_XMEGA.c │ │ │ │ └── Serial_XMEGA.h │ │ └── USB │ │ │ ├── Class │ │ │ ├── AndroidAccessoryClass.h │ │ │ ├── AudioClass.h │ │ │ ├── CDCClass.h │ │ │ ├── Common │ │ │ │ ├── AndroidAccessoryClassCommon.h │ │ │ │ ├── AudioClassCommon.h │ │ │ │ ├── CDCClassCommon.h │ │ │ │ ├── HIDClassCommon.h │ │ │ │ ├── HIDParser.c │ │ │ │ ├── HIDParser.h │ │ │ │ ├── HIDReportData.h │ │ │ │ ├── MIDIClassCommon.h │ │ │ │ ├── MassStorageClassCommon.h │ │ │ │ ├── PrinterClassCommon.h │ │ │ │ ├── RNDISClassCommon.h │ │ │ │ └── StillImageClassCommon.h │ │ │ ├── Device │ │ │ │ ├── AudioClassDevice.c │ │ │ │ ├── AudioClassDevice.h │ │ │ │ ├── CDCClassDevice.c │ │ │ │ ├── CDCClassDevice.h │ │ │ │ ├── HIDClassDevice.c │ │ │ │ ├── HIDClassDevice.h │ │ │ │ ├── MIDIClassDevice.c │ │ │ │ ├── MIDIClassDevice.h │ │ │ │ ├── MassStorageClassDevice.c │ │ │ │ ├── MassStorageClassDevice.h │ │ │ │ ├── RNDISClassDevice.c │ │ │ │ └── RNDISClassDevice.h │ │ │ ├── HIDClass.h │ │ │ ├── Host │ │ │ │ ├── AndroidAccessoryClassHost.c │ │ │ │ ├── AndroidAccessoryClassHost.h │ │ │ │ ├── AudioClassHost.c │ │ │ │ ├── AudioClassHost.h │ │ │ │ ├── CDCClassHost.c │ │ │ │ ├── CDCClassHost.h │ │ │ │ ├── HIDClassHost.c │ │ │ │ ├── HIDClassHost.h │ │ │ │ ├── MIDIClassHost.c │ │ │ │ ├── MIDIClassHost.h │ │ │ │ ├── MassStorageClassHost.c │ │ │ │ ├── MassStorageClassHost.h │ │ │ │ ├── PrinterClassHost.c │ │ │ │ ├── PrinterClassHost.h │ │ │ │ ├── RNDISClassHost.c │ │ │ │ ├── RNDISClassHost.h │ │ │ │ ├── StillImageClassHost.c │ │ │ │ └── StillImageClassHost.h │ │ │ ├── MIDIClass.h │ │ │ ├── MassStorageClass.h │ │ │ ├── PrinterClass.h │ │ │ ├── RNDISClass.h │ │ │ └── StillImageClass.h │ │ │ ├── Core │ │ │ ├── AVR8 │ │ │ │ ├── Device_AVR8.c │ │ │ │ ├── Device_AVR8.h │ │ │ │ ├── EndpointStream_AVR8.c │ │ │ │ ├── EndpointStream_AVR8.h │ │ │ │ ├── Endpoint_AVR8.c │ │ │ │ ├── Endpoint_AVR8.h │ │ │ │ ├── Host_AVR8.c │ │ │ │ ├── Host_AVR8.h │ │ │ │ ├── OTG_AVR8.h │ │ │ │ ├── PipeStream_AVR8.c │ │ │ │ ├── PipeStream_AVR8.h │ │ │ │ ├── Pipe_AVR8.c │ │ │ │ ├── Pipe_AVR8.h │ │ │ │ ├── Template │ │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ │ └── Template_Pipe_RW.c │ │ │ │ ├── USBController_AVR8.c │ │ │ │ ├── USBController_AVR8.h │ │ │ │ ├── USBInterrupt_AVR8.c │ │ │ │ └── USBInterrupt_AVR8.h │ │ │ ├── ConfigDescriptors.c │ │ │ ├── ConfigDescriptors.h │ │ │ ├── Device.h │ │ │ ├── DeviceStandardReq.c │ │ │ ├── DeviceStandardReq.h │ │ │ ├── Endpoint.h │ │ │ ├── EndpointStream.h │ │ │ ├── Events.c │ │ │ ├── Events.h │ │ │ ├── Host.h │ │ │ ├── HostStandardReq.c │ │ │ ├── HostStandardReq.h │ │ │ ├── OTG.h │ │ │ ├── Pipe.h │ │ │ ├── PipeStream.h │ │ │ ├── StdDescriptors.h │ │ │ ├── StdRequestType.h │ │ │ ├── UC3 │ │ │ │ ├── Device_UC3.c │ │ │ │ ├── Device_UC3.h │ │ │ │ ├── EndpointStream_UC3.c │ │ │ │ ├── EndpointStream_UC3.h │ │ │ │ ├── Endpoint_UC3.c │ │ │ │ ├── Endpoint_UC3.h │ │ │ │ ├── Host_UC3.c │ │ │ │ ├── Host_UC3.h │ │ │ │ ├── PipeStream_UC3.c │ │ │ │ ├── PipeStream_UC3.h │ │ │ │ ├── Pipe_UC3.c │ │ │ │ ├── Pipe_UC3.h │ │ │ │ ├── Template │ │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ │ └── Template_Pipe_RW.c │ │ │ │ ├── USBController_UC3.c │ │ │ │ ├── USBController_UC3.h │ │ │ │ ├── USBInterrupt_UC3.c │ │ │ │ └── USBInterrupt_UC3.h │ │ │ ├── USBController.h │ │ │ ├── USBInterrupt.h │ │ │ ├── USBMode.h │ │ │ ├── USBTask.c │ │ │ ├── USBTask.h │ │ │ └── XMEGA │ │ │ │ ├── Device_XMEGA.c │ │ │ │ ├── Device_XMEGA.h │ │ │ │ ├── EndpointStream_XMEGA.c │ │ │ │ ├── EndpointStream_XMEGA.h │ │ │ │ ├── Endpoint_XMEGA.c │ │ │ │ ├── Endpoint_XMEGA.h │ │ │ │ ├── Host_XMEGA.c │ │ │ │ ├── PipeStream_XMEGA.c │ │ │ │ ├── Pipe_XMEGA.c │ │ │ │ ├── Template │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ └── Template_Endpoint_RW.c │ │ │ │ ├── USBController_XMEGA.c │ │ │ │ ├── USBController_XMEGA.h │ │ │ │ ├── USBInterrupt_XMEGA.c │ │ │ │ └── USBInterrupt_XMEGA.h │ │ │ └── USB.h │ ├── License.txt │ ├── Platform │ │ ├── Platform.h │ │ ├── UC3 │ │ │ ├── ClockManagement.h │ │ │ ├── Exception.S │ │ │ ├── InterruptManagement.c │ │ │ ├── InterruptManagement.h │ │ │ └── UC3ExperimentalInfo.txt │ │ └── XMEGA │ │ │ ├── ClockManagement.h │ │ │ └── XMEGAExperimentalInfo.txt │ ├── StudioIntegration │ │ ├── Blob │ │ │ ├── Atmel.Studio.Services.Interfaces.dll │ │ │ ├── LUFA.dll │ │ │ └── LUFA.pkgdef │ │ ├── Docbook │ │ │ ├── mshelp │ │ │ │ └── placeholder.txt │ │ │ └── placeholder.txt │ │ ├── HV1 │ │ │ ├── helpcontentsetup.msha │ │ │ ├── lufa_docbook_transform.xsl │ │ │ ├── lufa_helpcontentsetup_transform.xslt │ │ │ └── lufa_studio_help_styling.css │ │ ├── ProjectGenerator │ │ │ └── placeholder.txt │ │ ├── VSIX │ │ │ ├── ASFExplorer.png │ │ │ ├── ASFWizard.png │ │ │ ├── GettingStarted.htm │ │ │ ├── NewExampleWizard.png │ │ │ ├── [Content_Types].xml │ │ │ ├── asf-manifest.xml │ │ │ ├── extension.vsixmanifest │ │ │ ├── generate_caches.py │ │ │ ├── lufa_asfmanifest_transform.xslt │ │ │ └── lufa_vsmanifest_transform.xslt │ │ ├── XDK │ │ │ ├── lufa_extension_transform.xslt │ │ │ ├── lufa_filelist_transform.xslt │ │ │ ├── lufa_indent_transform.xslt │ │ │ └── lufa_module_transform.xslt │ │ ├── XSLT │ │ │ ├── lufa_asfmanifest_transform.xslt │ │ │ ├── lufa_extension_transform.xslt │ │ │ ├── lufa_filelist_transform.xslt │ │ │ ├── lufa_indent_transform.xslt │ │ │ ├── lufa_module_transform.xslt │ │ │ └── lufa_vsmanifest_transform.xslt │ │ ├── generate_caches.py │ │ ├── lufa.xml │ │ ├── lufa_common.xml │ │ ├── lufa_drivers_board.xml │ │ ├── lufa_drivers_board_names.xml │ │ ├── lufa_drivers_misc.xml │ │ ├── lufa_drivers_peripheral.xml │ │ ├── lufa_drivers_usb.xml │ │ ├── lufa_drivers_usb_class.xml │ │ ├── lufa_drivers_usb_core.xml │ │ ├── lufa_drivers_usb_core_avr8.xml │ │ ├── lufa_drivers_usb_core_uc3.xml │ │ ├── lufa_drivers_usb_core_xmega.xml │ │ ├── lufa_platform.xml │ │ ├── lufa_platform_uc3.xml │ │ ├── lufa_platform_xmega.xml │ │ ├── lufa_toolchain.xml │ │ └── makefile │ ├── Version.h │ └── makefile ├── Makefile ├── reflow.c └── reflow.h └── pc └── pc.py /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | *.o 3 | -------------------------------------------------------------------------------- /Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/Readme -------------------------------------------------------------------------------- /hardware/uuni.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/hardware/uuni.brd -------------------------------------------------------------------------------- /hardware/uuni.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/hardware/uuni.sch -------------------------------------------------------------------------------- /software/microprocessor/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/Config/LUFAConfig.h -------------------------------------------------------------------------------- /software/microprocessor/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/Descriptors.c -------------------------------------------------------------------------------- /software/microprocessor/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/Descriptors.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/HID_EEPROM_Loader/HID_EEPROM_Loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/HID_EEPROM_Loader/HID_EEPROM_Loader.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/HID_EEPROM_Loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/HID_EEPROM_Loader/makefile -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_atprogram.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_avrdude.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_build.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_core.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_cppcheck.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_dfu.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_doxygen.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_hid.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Build/lufa_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Build/lufa_sources.mk -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/Descriptors.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DeviceTemplate/asf.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DriverStubs/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DriverStubs/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/HostTemplate/HostApplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/HostTemplate/HostApplication.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/HostTemplate/HostApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/HostTemplate/HostApplication.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/HostTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/HostTemplate/asf.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/LUFAConfig.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/CodeTemplates/makefile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/CodeTemplates/makefile_template -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Common/ArchitectureSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Common/ArchitectureSpecific.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Common/Architectures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Common/Architectures.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Common/Common.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Common/CompilerSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Common/CompilerSpecific.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Common/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Common/Endianness.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Doxygen.conf -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/BuildSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/BuildSystem.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/BuildingLinkableLibraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/BuildingLinkableLibraries.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/ChangeLog.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/CompilingApps.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/DeviceSupport.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Donating.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/ExportingLibrary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/ExportingLibrary.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/FutureChanges.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/GettingStarted.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Groups.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step1.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step2.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step3.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step4.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_1.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_2.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_3.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/Author.jpg -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/LUFA.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Images/LUFA_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Images/LUFA_thumb.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/KnownIssues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/KnownIssues.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/LibraryResources.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/LicenseInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/LicenseInfo.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/MainPage.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/MigrationInformation.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/SoftwareBootloaderJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/SoftwareBootloaderJump.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Style/Footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Style/Footer.htm -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/Style/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/Style/Style.css -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/DoxygenPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/DoxygenPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BENITO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BENITO/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BUI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BUI/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BUI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BUI/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/CULV3/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/CULV3/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/DUCE/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/DUCE/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MULTIO/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK525/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/STK526/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/TEENSY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/TEENSY/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/TUL/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/TUL/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/TUL/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/TUL/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/TUL/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/TUL/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/UDIP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/UDIP/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/UNO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/UNO/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/UNO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/UNO/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USB2AX/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USB2AX/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBFOO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBFOO/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1104/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1104/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Misc/.RingBuffer.h.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Misc/.RingBuffer.h.swp -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Misc/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Misc/AT45DB321C.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Misc/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Misc/AT45DB642D.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Misc/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Misc/RingBuffer.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/SerialSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/SerialSPI.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/AudioClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/CDCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/CDCClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/AndroidAccessoryClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/AndroidAccessoryClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDParser.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDParser.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/HIDReportData.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/MassStorageClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/MassStorageClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Common/StillImageClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Common/StillImageClassCommon.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/HIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/HIDClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/AudioClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/AudioClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/AudioClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/AudioClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/CDCClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/CDCClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/CDCClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/CDCClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/HIDClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/HIDClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/HIDClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/HIDClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/MIDIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/MIDIClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/MassStorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/MassStorageClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/PrinterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/PrinterClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/RNDISClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/RNDISClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Class/StillImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Class/StillImageClass.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Pipe_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/Template/Template_Pipe_RW.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/ConfigDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/ConfigDescriptors.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/ConfigDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/ConfigDescriptors.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/Device.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/DeviceStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/DeviceStandardReq.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/DeviceStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/DeviceStandardReq.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/Endpoint.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/EndpointStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/EndpointStream.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/Events.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/Events.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/Host.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/HostStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/HostStandardReq.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/HostStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/HostStandardReq.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/OTG.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/Pipe.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/PipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/PipeStream.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/StdDescriptors.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/StdRequestType.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Device_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Device_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Device_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Device_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Host_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Host_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Host_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Host_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Pipe_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/Template/Template_Pipe_RW.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/USBController.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/USBInterrupt.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/USBMode.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/USBTask.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/USBTask.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/License.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/Platform.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/UC3/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/UC3/ClockManagement.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/UC3/Exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/UC3/Exception.S -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/UC3/InterruptManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/UC3/InterruptManagement.c -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/UC3/InterruptManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/UC3/InterruptManagement.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/UC3/UC3ExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/UC3/UC3ExperimentalInfo.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/XMEGA/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/XMEGA/ClockManagement.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/Blob/Atmel.Studio.Services.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/Blob/Atmel.Studio.Services.Interfaces.dll -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/Blob/LUFA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/Blob/LUFA.dll -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/Blob/LUFA.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/Blob/LUFA.pkgdef -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/Docbook/mshelp/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/Docbook/mshelp/placeholder.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/Docbook/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/Docbook/placeholder.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/HV1/helpcontentsetup.msha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/HV1/helpcontentsetup.msha -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xsl -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/HV1/lufa_helpcontentsetup_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/HV1/lufa_helpcontentsetup_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/HV1/lufa_studio_help_styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/HV1/lufa_studio_help_styling.css -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/ProjectGenerator/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/ProjectGenerator/placeholder.txt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/ASFExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/ASFExplorer.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/ASFWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/ASFWizard.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/GettingStarted.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/GettingStarted.htm -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/NewExampleWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/NewExampleWizard.png -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/[Content_Types].xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/asf-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/asf-manifest.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/extension.vsixmanifest -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/generate_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/generate_caches.py -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/lufa_asfmanifest_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/lufa_asfmanifest_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/VSIX/lufa_vsmanifest_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/VSIX/lufa_vsmanifest_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XDK/lufa_extension_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XDK/lufa_extension_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XDK/lufa_filelist_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XDK/lufa_filelist_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XDK/lufa_indent_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XDK/lufa_indent_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XDK/lufa_module_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XDK/lufa_module_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_asfmanifest_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_asfmanifest_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_extension_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_extension_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_filelist_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_filelist_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_indent_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_indent_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_module_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_module_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_vsmanifest_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/XSLT/lufa_vsmanifest_transform.xslt -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/generate_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/generate_caches.py -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_common.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_board.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_board_names.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_board_names.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_misc.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_peripheral.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_peripheral.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_class.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core_avr8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core_avr8.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core_uc3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core_uc3.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core_xmega.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_drivers_usb_core_xmega.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_platform.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_platform_uc3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_platform_uc3.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_platform_xmega.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_platform_xmega.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/lufa_toolchain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/lufa_toolchain.xml -------------------------------------------------------------------------------- /software/microprocessor/LUFA/StudioIntegration/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/StudioIntegration/makefile -------------------------------------------------------------------------------- /software/microprocessor/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/Version.h -------------------------------------------------------------------------------- /software/microprocessor/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/LUFA/makefile -------------------------------------------------------------------------------- /software/microprocessor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/Makefile -------------------------------------------------------------------------------- /software/microprocessor/reflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/reflow.c -------------------------------------------------------------------------------- /software/microprocessor/reflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/microprocessor/reflow.h -------------------------------------------------------------------------------- /software/pc/pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ttl/reflow-controller/HEAD/software/pc/pc.py --------------------------------------------------------------------------------