├── ERD_RF_Power_Meter.inf ├── Firmware ├── LUFA │ ├── .gitignore │ ├── Bootloaders │ │ ├── CDC │ │ │ ├── BootloaderAPI.c │ │ │ ├── BootloaderAPI.h │ │ │ ├── BootloaderAPITable.S │ │ │ ├── BootloaderCDC.c │ │ │ ├── BootloaderCDC.h │ │ │ ├── BootloaderCDC.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── LUFA CDC Bootloader.inf │ │ │ ├── asf.xml │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── DFU │ │ │ ├── BootloaderAPI.c │ │ │ ├── BootloaderAPI.h │ │ │ ├── BootloaderAPITable.S │ │ │ ├── BootloaderDFU.c │ │ │ ├── BootloaderDFU.h │ │ │ ├── BootloaderDFU.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── asf.xml │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── HID │ │ │ ├── BootloaderHID.c │ │ │ ├── BootloaderHID.h │ │ │ ├── BootloaderHID.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── HostLoaderApp │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.bsd │ │ │ │ ├── gpl3.txt │ │ │ │ └── hid_bootloader_cli.c │ │ │ ├── HostLoaderApp_Python │ │ │ │ └── hid_bootloader_loader.py │ │ │ ├── asf.xml │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── MassStorage │ │ │ ├── BootloaderAPI.c │ │ │ ├── BootloaderAPI.h │ │ │ ├── BootloaderAPITable.S │ │ │ ├── BootloaderMassStorage.c │ │ │ ├── BootloaderMassStorage.h │ │ │ ├── BootloaderMassStorage.txt │ │ │ ├── Config │ │ │ │ ├── AppConfig.h │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── Lib │ │ │ │ ├── SCSI.c │ │ │ │ ├── SCSI.h │ │ │ │ ├── VirtualFAT.c │ │ │ │ └── VirtualFAT.h │ │ │ ├── asf.xml │ │ │ ├── doxyfile │ │ │ └── makefile │ │ ├── Printer │ │ │ ├── BootloaderAPI.c │ │ │ ├── BootloaderAPI.h │ │ │ ├── BootloaderAPITable.S │ │ │ ├── BootloaderPrinter.c │ │ │ ├── BootloaderPrinter.h │ │ │ ├── BootloaderPrinter.txt │ │ │ ├── Config │ │ │ │ └── LUFAConfig.h │ │ │ ├── Descriptors.c │ │ │ ├── Descriptors.h │ │ │ ├── asf.xml │ │ │ ├── doxyfile │ │ │ └── makefile │ │ └── makefile │ ├── BuildTests │ │ ├── BoardDriverTest │ │ │ ├── Board │ │ │ │ ├── Board.h │ │ │ │ ├── Buttons.h │ │ │ │ ├── Dataflash.h │ │ │ │ ├── Joystick.h │ │ │ │ └── LEDs.h │ │ │ ├── BoardDeviceMap.cfg │ │ │ ├── Test.c │ │ │ ├── makefile │ │ │ └── makefile.test │ │ ├── BootloaderTest │ │ │ ├── BootloaderDeviceMap.cfg │ │ │ └── makefile │ │ ├── ModuleTest │ │ │ ├── Dummy.S │ │ │ ├── Modules.h │ │ │ ├── Test_C.c │ │ │ ├── Test_CPP.cpp │ │ │ ├── makefile │ │ │ └── makefile.test │ │ ├── SingleUSBModeTest │ │ │ ├── Dummy.S │ │ │ ├── Test.c │ │ │ ├── makefile │ │ │ └── makefile.test │ │ ├── StaticAnalysisTest │ │ │ └── makefile │ │ └── makefile │ ├── 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 │ │ │ ├── WindowsINF │ │ │ │ ├── LUFA CDC-ACM.inf │ │ │ │ └── LUFA RNDIS.inf │ │ │ └── makefile_template │ │ ├── Common │ │ │ ├── ArchitectureSpecific.h │ │ │ ├── Architectures.h │ │ │ ├── Attributes.h │ │ │ ├── BoardTypes.h │ │ │ ├── Common.h │ │ │ ├── CompilerSpecific.h │ │ │ └── Endianness.h │ │ ├── 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 │ │ │ ├── OSDrivers.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 │ │ │ │ │ ├── MICRO │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── U2S │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── XPLAINED_MINI │ │ │ │ │ │ ├── Board.h │ │ │ │ │ │ └── LEDs.h │ │ │ │ │ └── YUN │ │ │ │ │ │ ├── Board.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 │ │ │ │ │ └── C3_XPLAINED │ │ │ │ │ ├── Board.h │ │ │ │ │ ├── Buttons.h │ │ │ │ │ └── LEDs.h │ │ │ ├── Misc │ │ │ │ ├── AT45DB321C.h │ │ │ │ ├── AT45DB642D.h │ │ │ │ ├── RingBuffer.h │ │ │ │ └── TerminalCodes.h │ │ │ ├── Peripheral │ │ │ │ ├── ADC.h │ │ │ │ ├── AVR8 │ │ │ │ │ ├── ADC_AVR8.h │ │ │ │ │ ├── SPI_AVR8.h │ │ │ │ │ ├── SerialSPI_AVR8.h │ │ │ │ │ ├── Serial_AVR8.c │ │ │ │ │ ├── Serial_AVR8.h │ │ │ │ │ ├── TWI_AVR8.c │ │ │ │ │ └── TWI_AVR8.h │ │ │ │ ├── SPI.h │ │ │ │ ├── Serial.h │ │ │ │ ├── SerialSPI.h │ │ │ │ ├── TWI.h │ │ │ │ └── XMEGA │ │ │ │ │ ├── SPI_XMEGA.h │ │ │ │ │ ├── SerialSPI_XMEGA.h │ │ │ │ │ ├── Serial_XMEGA.c │ │ │ │ │ ├── Serial_XMEGA.h │ │ │ │ │ ├── TWI_XMEGA.c │ │ │ │ │ └── TWI_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 │ │ │ │ │ ├── PrinterClassDevice.c │ │ │ │ │ ├── PrinterClassDevice.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 │ │ │ ├── HV1 │ │ │ │ ├── helpcontentsetup.msha │ │ │ │ ├── lufa_docbook_transform.xslt │ │ │ │ ├── lufa_helpcontentsetup_transform.xslt │ │ │ │ ├── lufa_hv1_transform.xslt │ │ │ │ └── lufa_studio_help_styling.css │ │ │ ├── VSIX │ │ │ │ ├── LUFA.dll │ │ │ │ ├── LUFA.pkgdef │ │ │ │ ├── [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 │ │ │ ├── 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_class_android.xml │ │ │ ├── lufa_drivers_usb_class_audio.xml │ │ │ ├── lufa_drivers_usb_class_cdc.xml │ │ │ ├── lufa_drivers_usb_class_hid.xml │ │ │ ├── lufa_drivers_usb_class_midi.xml │ │ │ ├── lufa_drivers_usb_class_ms.xml │ │ │ ├── lufa_drivers_usb_class_printer.xml │ │ │ ├── lufa_drivers_usb_class_rndis.xml │ │ │ ├── lufa_drivers_usb_class_si.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 │ │ ├── doxyfile │ │ └── makefile │ ├── Maintenance │ │ ├── lufa_functionlist_transform.xslt │ │ └── makefile │ ├── README.txt │ └── makefile └── RF_Power_Meter │ ├── Config │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Makefile │ ├── RF_Power_Meter.c │ ├── RF_Power_Meter.h │ └── RF_Power_Meter.hex ├── Hardware ├── Board.png ├── RF Power Meter.brd ├── RF Power Meter.sch └── Schematic.png └── README.md /ERD_RF_Power_Meter.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/ERD_RF_Power_Meter.inf -------------------------------------------------------------------------------- /Firmware/LUFA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/.gitignore -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/BootloaderAPI.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/BootloaderAPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/BootloaderAPITable.S -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/BootloaderCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/BootloaderCDC.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/BootloaderCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/BootloaderCDC.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/BootloaderCDC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/BootloaderCDC.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/Config/AppConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/Descriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/LUFA CDC Bootloader.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/LUFA CDC Bootloader.inf -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/doxyfile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/CDC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/CDC/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/BootloaderAPI.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/BootloaderAPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/BootloaderAPITable.S -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/BootloaderDFU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/BootloaderDFU.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/BootloaderDFU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/BootloaderDFU.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/BootloaderDFU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/BootloaderDFU.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/Config/AppConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/Descriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/doxyfile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/DFU/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/DFU/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/BootloaderHID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/BootloaderHID.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/BootloaderHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/BootloaderHID.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/BootloaderHID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/BootloaderHID.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/Descriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/HostLoaderApp/.gitignore: -------------------------------------------------------------------------------- 1 | hid_bootloader_cli 2 | -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/HostLoaderApp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/HostLoaderApp/Makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/HostLoaderApp/Makefile.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/HostLoaderApp/Makefile.bsd -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/HostLoaderApp/gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/HostLoaderApp/gpl3.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/HostLoaderApp_Python/hid_bootloader_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/HostLoaderApp_Python/hid_bootloader_loader.py -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/doxyfile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/HID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/HID/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/BootloaderAPI.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/BootloaderAPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/BootloaderAPITable.S -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/BootloaderMassStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/BootloaderMassStorage.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/BootloaderMassStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/BootloaderMassStorage.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/BootloaderMassStorage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/BootloaderMassStorage.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Config/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Config/AppConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Descriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Lib/SCSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Lib/SCSI.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Lib/SCSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Lib/SCSI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Lib/VirtualFAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Lib/VirtualFAT.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/Lib/VirtualFAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/Lib/VirtualFAT.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/doxyfile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/MassStorage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/MassStorage/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/BootloaderAPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/BootloaderAPI.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/BootloaderAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/BootloaderAPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/BootloaderAPITable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/BootloaderAPITable.S -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/BootloaderPrinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/BootloaderPrinter.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/BootloaderPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/BootloaderPrinter.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/BootloaderPrinter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/BootloaderPrinter.txt -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/Descriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/doxyfile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/Printer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/Printer/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Bootloaders/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Bootloaders/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/Board/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/Board/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/Board/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/Board/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/Board/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/BoardDeviceMap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/BoardDeviceMap.cfg -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/Test.c -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BoardDriverTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BoardDriverTest/makefile.test -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BootloaderTest/BootloaderDeviceMap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BootloaderTest/BootloaderDeviceMap.cfg -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/BootloaderTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/BootloaderTest/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/ModuleTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/ModuleTest/Dummy.S -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/ModuleTest/Modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/ModuleTest/Modules.h -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/ModuleTest/Test_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/ModuleTest/Test_C.c -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/ModuleTest/Test_CPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/ModuleTest/Test_CPP.cpp -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/ModuleTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/ModuleTest/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/ModuleTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/ModuleTest/makefile.test -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/SingleUSBModeTest/Dummy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/SingleUSBModeTest/Dummy.S -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/SingleUSBModeTest/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/SingleUSBModeTest/Test.c -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/SingleUSBModeTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/SingleUSBModeTest/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/SingleUSBModeTest/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/SingleUSBModeTest/makefile.test -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/StaticAnalysisTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/StaticAnalysisTest/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/BuildTests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/BuildTests/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/HID_EEPROM_Loader/HID_EEPROM_Loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/HID_EEPROM_Loader/HID_EEPROM_Loader.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/HID_EEPROM_Loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/HID_EEPROM_Loader/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_atprogram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_atprogram.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_avrdude.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_avrdude.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_build.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_core.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_cppcheck.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_cppcheck.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_dfu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_dfu.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_doxygen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_doxygen.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_hid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_hid.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Build/lufa_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Build/lufa_sources.mk -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/Descriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/DeviceApplication.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DeviceTemplate/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/DriverStubs/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/HostTemplate/HostApplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/HostTemplate/HostApplication.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/HostTemplate/HostApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/HostTemplate/HostApplication.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/HostTemplate/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/HostTemplate/asf.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/WindowsINF/LUFA CDC-ACM.inf -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/WindowsINF/LUFA RNDIS.inf -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/CodeTemplates/makefile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/CodeTemplates/makefile_template -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Common/ArchitectureSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Common/ArchitectureSpecific.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Common/Architectures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Common/Architectures.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Common/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Common/Attributes.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Common/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Common/BoardTypes.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Common/Common.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Common/CompilerSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Common/CompilerSpecific.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Common/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Common/Endianness.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/BuildSystem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/BuildSystem.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/BuildingLinkableLibraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/BuildingLinkableLibraries.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/ChangeLog.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/CompileTimeTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/CompileTimeTokens.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/CompilingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/CompilingApps.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/ConfiguringApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/ConfiguringApps.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/DevelopingWithLUFA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/DevelopingWithLUFA.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/DeviceSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/DeviceSupport.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/DirectorySummaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/DirectorySummaries.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Donating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Donating.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/ExportingLibrary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/ExportingLibrary.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/FutureChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/FutureChanges.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/GettingStarted.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Groups.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Groups.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step1.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step2.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step3.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step4.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_1.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_2.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/AS5_AS6_Import/AS5_AS6_Import_Step5_3.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/Author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/Author.jpg -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/LUFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/LUFA.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Images/LUFA_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Images/LUFA_thumb.png -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/KnownIssues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/KnownIssues.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/LUFAPoweredProjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/LUFAPoweredProjects.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/LibraryResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/LibraryResources.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/LicenseInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/LicenseInfo.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/MainPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/MainPage.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/MigrationInformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/MigrationInformation.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/OSDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/OSDrivers.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/ProgrammingApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/ProgrammingApps.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/SoftwareBootloaderJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/SoftwareBootloaderJump.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Style/Footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Style/Footer.htm -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/Style/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/Style/Style.css -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/VIDAndPIDValues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/VIDAndPIDValues.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/DoxygenPages/WritingBoardDrivers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/DoxygenPages/WritingBoardDrivers.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/ADAFRUITU4/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/ADAFRUITU4/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/ATAVRUSBRF01/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BENITO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BENITO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BENITO/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BENITO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BIGMULTIO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BIGMULTIO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BLACKCAT/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BLACKCAT/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUI/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUI/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/BUMBLEB/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/CULV3/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/CULV3/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/CULV3/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/CULV3/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/DUCE/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/DUCE/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/DUCE/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/EVK527/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/JMDBU2/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/JMDBU2/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/JMDBU2/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/LEONARDO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MAXIMUS/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MAXIMUS/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICRO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICRO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICRO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICRO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROPENDOUS/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROPENDOUS/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROSIN162/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROSIN162/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MICROSIN162/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MINIMUS/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MINIMUS/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MINIMUS/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MULTIO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MULTIO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/MULTIO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX162/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX162/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX162/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX32U4/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEX32U4/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXISPMK2/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/OLIMEXT32U4/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/RZUSBSTICK/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/RZUSBSTICK/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/SPARKFUN8U2/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STANGE_ISP/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STANGE_ISP/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STANGE_ISP/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK525/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/STK526/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/TEENSY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/TEENSY/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/TEENSY/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/TUL/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/TUL/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/TUL/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/TUL/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/TUL/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/TUL/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/U2S/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/U2S/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/U2S/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/U2S/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/U2S/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/U2S/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/UDIP/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/UDIP/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/UDIP/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/UDIP/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/UNO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/UNO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/UNO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/UNO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USB2AX/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USB2AX/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USB2AX/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USB2AX/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBFOO/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBFOO/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBFOO/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBFOO/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBKEY/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBTINYMKII/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBTINYMKII/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/USBTINYMKII/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAIN/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAIN/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAIN/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAINED_MINI/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAINED_MINI/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAINED_MINI/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/XPLAINED_MINI/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/YUN/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/YUN/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/AVR8/YUN/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/AVR8/YUN/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/Temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/Temperature.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/Temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/Temperature.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1100/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1101/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1104/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1104/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1104/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/EVK1104/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/UC3/UC3A3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/A3BU_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/Dataflash.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/B1_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Board.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/Buttons.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Board/XMEGA/C3_XPLAINED/LEDs.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Misc/AT45DB321C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Misc/AT45DB321C.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Misc/AT45DB642D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Misc/AT45DB642D.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Misc/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Misc/RingBuffer.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Misc/TerminalCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Misc/TerminalCodes.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/ADC.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/ADC_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/SerialSPI_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/SPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/Serial.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/SerialSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/SerialSPI.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/TWI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/TWI.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/SPI_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/Peripheral/XMEGA/TWI_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/AndroidAccessoryClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/AudioClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/AudioClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/CDCClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/CDCClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/AndroidAccessoryClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/AndroidAccessoryClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/AudioClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/CDCClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDParser.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDParser.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDReportData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/HIDReportData.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/MassStorageClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/MassStorageClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/PrinterClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/RNDISClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Common/StillImageClassCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Common/StillImageClassCommon.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/AudioClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/CDCClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/HIDClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/HIDClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MIDIClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Device/RNDISClassDevice.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/HIDClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/HIDClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AudioClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AudioClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AudioClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/AudioClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/CDCClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/CDCClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/CDCClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/CDCClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/HIDClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/HIDClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/HIDClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/HIDClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MIDIClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MIDIClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/MassStorageClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/PrinterClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/PrinterClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/RNDISClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/RNDISClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/StillImageClassHost.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/Host/StillImageClassHost.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/MIDIClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/MIDIClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/MassStorageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/MassStorageClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/PrinterClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/PrinterClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/RNDISClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/RNDISClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Class/StillImageClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Class/StillImageClass.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/EndpointStream_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Host_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/OTG_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/PipeStream_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Pipe_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/Template/Template_Pipe_RW.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/ConfigDescriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/ConfigDescriptors.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/ConfigDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/ConfigDescriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/Device.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/DeviceStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/DeviceStandardReq.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/DeviceStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/DeviceStandardReq.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/Endpoint.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/EndpointStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/EndpointStream.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/Events.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/Events.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/Host.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/HostStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/HostStandardReq.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/HostStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/HostStandardReq.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/OTG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/OTG.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/Pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/Pipe.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/PipeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/PipeStream.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/StdDescriptors.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/StdRequestType.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Device_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Device_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Device_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Device_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/EndpointStream_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Host_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Host_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Host_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Host_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/PipeStream_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Pipe_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Pipe_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/Template/Template_Pipe_RW.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBController_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBController_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/UC3/USBInterrupt_UC3.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/USBController.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/USBInterrupt.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/USBMode.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/USBTask.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/USBTask.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/EndpointStream_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Endpoint_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Host_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/PipeStream_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Pipe_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/Core/XMEGA/USBInterrupt_XMEGA.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Drivers/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Drivers/USB/USB.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/License.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/Platform.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/UC3/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/UC3/ClockManagement.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/UC3/Exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/UC3/Exception.S -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/UC3/InterruptManagement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/UC3/InterruptManagement.c -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/UC3/InterruptManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/UC3/InterruptManagement.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/UC3/UC3ExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/UC3/UC3ExperimentalInfo.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/XMEGA/ClockManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/XMEGA/ClockManagement.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Platform/XMEGA/XMEGAExperimentalInfo.txt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/HV1/helpcontentsetup.msha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/HV1/helpcontentsetup.msha -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_helpcontentsetup_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_helpcontentsetup_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_hv1_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_studio_help_styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/HV1/lufa_studio_help_styling.css -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/LUFA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/LUFA.dll -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/LUFA.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/LUFA.pkgdef -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/[Content_Types].xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/asf-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/asf-manifest.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/extension.vsixmanifest -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/generate_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/generate_caches.py -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/lufa_asfmanifest_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/lufa_asfmanifest_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/VSIX/lufa_vsmanifest_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/VSIX/lufa_vsmanifest_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_extension_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_extension_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_filelist_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_filelist_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_indent_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_indent_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_module_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/XDK/lufa_module_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_common.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_board.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_board_names.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_board_names.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_misc.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_peripheral.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_peripheral.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_android.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_audio.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_cdc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_cdc.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_hid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_hid.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_midi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_midi.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_ms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_ms.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_printer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_printer.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_rndis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_rndis.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_class_si.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core_avr8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core_avr8.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core_uc3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core_uc3.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core_xmega.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_drivers_usb_core_xmega.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_platform.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_platform_uc3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_platform_uc3.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_platform_xmega.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_platform_xmega.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/lufa_toolchain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/lufa_toolchain.xml -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/StudioIntegration/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/StudioIntegration/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/Version.h -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/doxyfile -------------------------------------------------------------------------------- /Firmware/LUFA/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/LUFA/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/Maintenance/lufa_functionlist_transform.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Maintenance/lufa_functionlist_transform.xslt -------------------------------------------------------------------------------- /Firmware/LUFA/Maintenance/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/Maintenance/makefile -------------------------------------------------------------------------------- /Firmware/LUFA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/README.txt -------------------------------------------------------------------------------- /Firmware/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/LUFA/makefile -------------------------------------------------------------------------------- /Firmware/RF_Power_Meter/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/RF_Power_Meter/Config/LUFAConfig.h -------------------------------------------------------------------------------- /Firmware/RF_Power_Meter/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/RF_Power_Meter/Descriptors.c -------------------------------------------------------------------------------- /Firmware/RF_Power_Meter/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/RF_Power_Meter/Descriptors.h -------------------------------------------------------------------------------- /Firmware/RF_Power_Meter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/RF_Power_Meter/Makefile -------------------------------------------------------------------------------- /Firmware/RF_Power_Meter/RF_Power_Meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/RF_Power_Meter/RF_Power_Meter.c -------------------------------------------------------------------------------- /Firmware/RF_Power_Meter/RF_Power_Meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/RF_Power_Meter/RF_Power_Meter.h -------------------------------------------------------------------------------- /Firmware/RF_Power_Meter/RF_Power_Meter.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Firmware/RF_Power_Meter/RF_Power_Meter.hex -------------------------------------------------------------------------------- /Hardware/Board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Hardware/Board.png -------------------------------------------------------------------------------- /Hardware/RF Power Meter.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Hardware/RF Power Meter.brd -------------------------------------------------------------------------------- /Hardware/RF Power Meter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Hardware/RF Power Meter.sch -------------------------------------------------------------------------------- /Hardware/Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/Hardware/Schematic.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnhancedRadioDevices/RF-Power-Meter/HEAD/README.md --------------------------------------------------------------------------------