From 620ac4b260fa663d12b11a0b15ac50379523c125 Mon Sep 17 00:00:00 2001 From: Eric Tang Date: Thu, 21 Apr 2016 19:35:18 -0700 Subject: Update functions used to write to EEPROM --- tmk_core/protocol/lufa/LUFA-git/Bootloaders/CDC/BootloaderCDC.c | 4 ++-- tmk_core/protocol/lufa/LUFA-git/Bootloaders/DFU/BootloaderDFU.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tmk_core/protocol/lufa') diff --git a/tmk_core/protocol/lufa/LUFA-git/Bootloaders/CDC/BootloaderCDC.c b/tmk_core/protocol/lufa/LUFA-git/Bootloaders/CDC/BootloaderCDC.c index f66a483e6e..58bb338927 100644 --- a/tmk_core/protocol/lufa/LUFA-git/Bootloaders/CDC/BootloaderCDC.c +++ b/tmk_core/protocol/lufa/LUFA-git/Bootloaders/CDC/BootloaderCDC.c @@ -327,7 +327,7 @@ static void ReadWriteMemoryBlock(const uint8_t Command) else { /* Write the next EEPROM byte from the endpoint */ - eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); + eeprom_update_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); /* Increment the address counter after use */ CurrAddress += 2; @@ -581,7 +581,7 @@ static void CDC_Task(void) else if (Command == AVR109_COMMAND_WriteEEPROM) { /* Read the byte from the endpoint and write it to the EEPROM */ - eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); + eeprom_update_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); /* Increment the address after use */ CurrAddress += 2; diff --git a/tmk_core/protocol/lufa/LUFA-git/Bootloaders/DFU/BootloaderDFU.c b/tmk_core/protocol/lufa/LUFA-git/Bootloaders/DFU/BootloaderDFU.c index 0385bfc497..00e673268a 100644 --- a/tmk_core/protocol/lufa/LUFA-git/Bootloaders/DFU/BootloaderDFU.c +++ b/tmk_core/protocol/lufa/LUFA-git/Bootloaders/DFU/BootloaderDFU.c @@ -370,7 +370,7 @@ void EVENT_USB_Device_ControlRequest(void) } /* Read the byte from the USB interface and write to to the EEPROM */ - eeprom_write_byte((uint8_t*)StartAddr, Endpoint_Read_8()); + eeprom_update_byte((uint8_t*)StartAddr, Endpoint_Read_8()); /* Adjust counters */ StartAddr++; -- cgit v1.2.3 From fde477a927edc6b4207a6968d44aeed021e8b300 Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Sun, 15 May 2016 00:51:06 -0400 Subject: updates midi functionality (#331) * implements leader key for planck experimental * allows override of leader timeout * adds ability to use the leader key in seq * fixes leader keycode * adds chording prototype * fixes keycode detection * moves music mode to quantum.c * disables chording by default * adds music sequencer functionality * implements audio/music functions in quantum.c * splits up process_action to allow independent processing of actions * moves midi stuff to quantum.c * adds additional scales for midi --- tmk_core/protocol/lufa/lufa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmk_core/protocol/lufa') diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c index f03f9a9b92..aba94cd597 100644 --- a/tmk_core/protocol/lufa/lufa.c +++ b/tmk_core/protocol/lufa/lufa.c @@ -883,7 +883,7 @@ int main(void) midi_register_cc_callback(&midi_device, cc_callback); midi_register_sysex_callback(&midi_device, sysex_callback); - init_notes(); + // init_notes(); // midi_send_cc(&midi_device, 0, 1, 2); // midi_send_cc(&midi_device, 15, 1, 0); // midi_send_noteon(&midi_device, 0, 64, 127); -- cgit v1.2.3 From 897f5b2f9d430b780149b46ba113a3fc61483b54 Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Mon, 23 May 2016 23:44:36 -0400 Subject: updates midi in play_note to better octave --- tmk_core/protocol/lufa/lufa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmk_core/protocol/lufa') diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c index aba94cd597..b70b52bf4d 100644 --- a/tmk_core/protocol/lufa/lufa.c +++ b/tmk_core/protocol/lufa/lufa.c @@ -947,10 +947,10 @@ void fallthrough_callback(MidiDevice * device, if (cnt == 3) { switch (byte0 & 0xF0) { case MIDI_NOTEON: - play_note(((double)261.6)*pow(2.0, -1.0)*pow(2.0,(byte1 & 0x7F)/12.0), (byte2 & 0x7F) / 8); + play_note(((double)261.6)*pow(2.0, -4.0)*pow(2.0,(byte1 & 0x7F)/12.0), (byte2 & 0x7F) / 8); break; case MIDI_NOTEOFF: - stop_note(((double)261.6)*pow(2.0, -1.0)*pow(2.0,(byte1 & 0x7F)/12.0)); + stop_note(((double)261.6)*pow(2.0, -4.0)*pow(2.0,(byte1 & 0x7F)/12.0)); break; } } -- cgit v1.2.3 From 6b8b332f77e6e7413d2ebb9d47093bc93255958e Mon Sep 17 00:00:00 2001 From: Masahiro Wakame Date: Wed, 8 Jun 2016 00:30:15 +0900 Subject: fix HID_RI_LOGICAL_MAXIMUM value (#388) --- tmk_core/protocol/lufa/descriptor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmk_core/protocol/lufa') diff --git a/tmk_core/protocol/lufa/descriptor.c b/tmk_core/protocol/lufa/descriptor.c index b345da27b4..1fca8af39c 100644 --- a/tmk_core/protocol/lufa/descriptor.c +++ b/tmk_core/protocol/lufa/descriptor.c @@ -76,7 +76,7 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM KeyboardReport[] = HID_RI_USAGE_MINIMUM(8, 0x00), /* Reserved (no event indicated) */ HID_RI_USAGE_MAXIMUM(8, 0xFF), /* Keyboard Application */ HID_RI_LOGICAL_MINIMUM(8, 0x00), - HID_RI_LOGICAL_MAXIMUM(8, 0xFF), + HID_RI_LOGICAL_MAXIMUM(16, 0x00FF), HID_RI_REPORT_COUNT(8, 0x06), HID_RI_REPORT_SIZE(8, 0x08), HID_RI_INPUT(8, HID_IOF_DATA | HID_IOF_ARRAY | HID_IOF_ABSOLUTE), -- cgit v1.2.3 From d9e4dad0a828a8a904f44dda090a4d6d08fe2948 Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Sat, 11 Jun 2016 13:31:31 -0400 Subject: Makefile redo & other features (#395) * .build containment implemented * no destructive variable setting - builds in either folder * make from 3 places * cleans before each build * make from root with keyboard=keyboard, keymap=keymap * make from keyboard/keyboard with keymap=keymap * make from keymaps/keymap * only implemented on planck * adds color diag to avr-gcc * makefiles for all plancks, clean-up * quick build-all makefile for plancks * reformatting of make output (colors) * color toggle, tmk path corrections * correct if statement for color * move config.h to main makefile, updates preonic, atomic * format update, all keyboards targets * makefile optional for build all target, alps and arrow_pad updated * alps updated * make planck default, trying out travis recipe for all-keyboards * all-keymaps target, different travis recipe * updates alps64 * updates keyboards to new format * updates clue* projects * all projects updated, specialise EZ .hex, let .hex through * updates travis * automatically find root, keyboard, keymap * silent echo, cleaned-up mass make output * updates all keyboards' .hex files except EZ * Rename Bantam44.c to bantam44.c * Rename Bantam44.h to bantam44.h * nananana * adds six key keyboard * does same to ez as rest * updates send_string example * brings ergodox_ez up to date * updates template/new project script * adds sixkeyboard * adds readme for sixkeyboard * adds sixkeyboard to travis * filenames, gitignore mess * define clock prescaler stuff manually * make quick, size test example * documentation and dfu-no-build --- tmk_core/protocol/lufa/lufa.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tmk_core/protocol/lufa') diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c index b70b52bf4d..9ca55dbc9d 100644 --- a/tmk_core/protocol/lufa/lufa.c +++ b/tmk_core/protocol/lufa/lufa.c @@ -838,7 +838,10 @@ static void setup_mcu(void) wdt_disable(); /* Disable clock division */ - clock_prescale_set(clock_div_1); + // clock_prescale_set(clock_div_1); + + CLKPR = (1 << CLKPCE); + CLKPR = (0 << CLKPS3) | (0 << CLKPS2) | (0 << CLKPS1) | (0 << CLKPS0); } static void setup_usb(void) -- cgit v1.2.3 From db32864ce7029d758f57729cc2f75e051a28d0a2 Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Sat, 18 Jun 2016 14:30:24 -0400 Subject: Cleans up quantum/keymap situation, removes extra lufa folders (#416) * sorts out keycodes * move midi around * remove mbed * replaces keymap with qmk/keymap_common * fixes keymap.h * keymap, config, quantum rearrange * removes unneeded lufa stuff --- .../Device/ClassDriver/AudioInput/AudioInput.c | 274 -- .../Device/ClassDriver/AudioInput/AudioInput.h | 94 - .../Device/ClassDriver/AudioInput/AudioInput.txt | 92 - .../ClassDriver/AudioInput/Config/AppConfig.h | 51 - .../ClassDriver/AudioInput/Config/LUFAConfig.h | 93 - .../Device/ClassDriver/AudioInput/Descriptors.c | 312 -- .../Device/ClassDriver/AudioInput/Descriptors.h | 106 - .../Demos/Device/ClassDriver/AudioInput/asf.xml | 52 - .../Demos/Device/ClassDriver/AudioInput/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/AudioInput/makefile | 38 - .../Device/ClassDriver/AudioOutput/AudioOutput.c | 311 -- .../Device/ClassDriver/AudioOutput/AudioOutput.h | 87 - .../Device/ClassDriver/AudioOutput/AudioOutput.txt | 92 - .../ClassDriver/AudioOutput/Config/AppConfig.h | 50 - .../ClassDriver/AudioOutput/Config/LUFAConfig.h | 93 - .../Device/ClassDriver/AudioOutput/Descriptors.c | 312 -- .../Device/ClassDriver/AudioOutput/Descriptors.h | 106 - .../Demos/Device/ClassDriver/AudioOutput/asf.xml | 50 - .../Demos/Device/ClassDriver/AudioOutput/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/AudioOutput/makefile | 38 - .../ClassDriver/DualMIDI/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/DualMIDI/Descriptors.c | 366 -- .../Device/ClassDriver/DualMIDI/Descriptors.h | 124 - .../Demos/Device/ClassDriver/DualMIDI/DualMIDI.c | 211 - .../Demos/Device/ClassDriver/DualMIDI/DualMIDI.h | 78 - .../Demos/Device/ClassDriver/DualMIDI/DualMIDI.txt | 78 - .../Demos/Device/ClassDriver/DualMIDI/asf.xml | 62 - .../Demos/Device/ClassDriver/DualMIDI/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/DualMIDI/makefile | 38 - .../DualVirtualSerial/Config/LUFAConfig.h | 126 - .../ClassDriver/DualVirtualSerial/Descriptors.c | 360 -- .../ClassDriver/DualVirtualSerial/Descriptors.h | 135 - .../DualVirtualSerial/DualVirtualSerial.c | 218 -- .../DualVirtualSerial/DualVirtualSerial.h | 76 - .../DualVirtualSerial/DualVirtualSerial.txt | 89 - .../DualVirtualSerial/LUFA DualVirtualSerial.inf | 66 - .../Device/ClassDriver/DualVirtualSerial/asf.xml | 62 - .../Device/ClassDriver/DualVirtualSerial/doxyfile | 2364 ----------- .../Device/ClassDriver/DualVirtualSerial/makefile | 38 - .../ClassDriver/GenericHID/Config/AppConfig.h | 48 - .../ClassDriver/GenericHID/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/GenericHID/Descriptors.c | 220 -- .../Device/ClassDriver/GenericHID/Descriptors.h | 95 - .../Device/ClassDriver/GenericHID/GenericHID.c | 202 - .../Device/ClassDriver/GenericHID/GenericHID.h | 87 - .../Device/ClassDriver/GenericHID/GenericHID.txt | 79 - .../HostTestApp/test_generic_hid_libusb.js | 143 - .../HostTestApp/test_generic_hid_libusb.py | 98 - .../HostTestApp/test_generic_hid_winusb.py | 96 - .../Demos/Device/ClassDriver/GenericHID/asf.xml | 63 - .../Demos/Device/ClassDriver/GenericHID/doxyfile | 2365 ----------- .../Demos/Device/ClassDriver/GenericHID/makefile | 38 - .../ClassDriver/Joystick/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/Joystick/Descriptors.c | 220 -- .../Device/ClassDriver/Joystick/Descriptors.h | 93 - .../Demos/Device/ClassDriver/Joystick/Joystick.c | 202 - .../Demos/Device/ClassDriver/Joystick/Joystick.h | 100 - .../Demos/Device/ClassDriver/Joystick/Joystick.txt | 77 - .../Demos/Device/ClassDriver/Joystick/asf.xml | 62 - .../Demos/Device/ClassDriver/Joystick/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/Joystick/makefile | 38 - .../ClassDriver/Keyboard/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/Keyboard/Descriptors.c | 216 - .../Device/ClassDriver/Keyboard/Descriptors.h | 93 - .../Demos/Device/ClassDriver/Keyboard/Keyboard.c | 219 -- .../Demos/Device/ClassDriver/Keyboard/Keyboard.h | 89 - .../Demos/Device/ClassDriver/Keyboard/Keyboard.txt | 76 - .../Demos/Device/ClassDriver/Keyboard/asf.xml | 62 - .../Demos/Device/ClassDriver/Keyboard/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/Keyboard/makefile | 38 - .../ClassDriver/KeyboardMouse/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/KeyboardMouse/Descriptors.c | 289 -- .../Device/ClassDriver/KeyboardMouse/Descriptors.h | 102 - .../ClassDriver/KeyboardMouse/KeyboardMouse.c | 276 -- .../ClassDriver/KeyboardMouse/KeyboardMouse.h | 84 - .../ClassDriver/KeyboardMouse/KeyboardMouse.txt | 81 - .../Demos/Device/ClassDriver/KeyboardMouse/asf.xml | 62 - .../Device/ClassDriver/KeyboardMouse/doxyfile | 2364 ----------- .../Device/ClassDriver/KeyboardMouse/makefile | 38 - .../KeyboardMouseMultiReport/Config/LUFAConfig.h | 126 - .../KeyboardMouseMultiReport/Descriptors.c | 279 -- .../KeyboardMouseMultiReport/Descriptors.h | 101 - .../KeyboardMouseMultiReport.c | 237 -- .../KeyboardMouseMultiReport.h | 84 - .../KeyboardMouseMultiReport.txt | 78 - .../ClassDriver/KeyboardMouseMultiReport/asf.xml | 61 - .../ClassDriver/KeyboardMouseMultiReport/doxyfile | 2364 ----------- .../ClassDriver/KeyboardMouseMultiReport/makefile | 38 - .../Device/ClassDriver/MIDI/Config/LUFAConfig.h | 126 - .../Demos/Device/ClassDriver/MIDI/Descriptors.c | 314 -- .../Demos/Device/ClassDriver/MIDI/Descriptors.h | 108 - .../LUFA-git/Demos/Device/ClassDriver/MIDI/MIDI.c | 211 - .../LUFA-git/Demos/Device/ClassDriver/MIDI/MIDI.h | 78 - .../Demos/Device/ClassDriver/MIDI/MIDI.txt | 78 - .../LUFA-git/Demos/Device/ClassDriver/MIDI/asf.xml | 62 - .../Demos/Device/ClassDriver/MIDI/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/MIDI/makefile | 38 - .../ClassDriver/MassStorage/Config/AppConfig.h | 50 - .../ClassDriver/MassStorage/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/MassStorage/Descriptors.c | 194 - .../Device/ClassDriver/MassStorage/Descriptors.h | 98 - .../ClassDriver/MassStorage/Lib/DataflashManager.c | 534 --- .../ClassDriver/MassStorage/Lib/DataflashManager.h | 89 - .../Device/ClassDriver/MassStorage/Lib/SCSI.c | 349 -- .../Device/ClassDriver/MassStorage/Lib/SCSI.h | 89 - .../Device/ClassDriver/MassStorage/MassStorage.c | 162 - .../Device/ClassDriver/MassStorage/MassStorage.h | 83 - .../Device/ClassDriver/MassStorage/MassStorage.txt | 100 - .../Demos/Device/ClassDriver/MassStorage/asf.xml | 67 - .../Demos/Device/ClassDriver/MassStorage/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/MassStorage/makefile | 38 - .../MassStorageKeyboard/Config/AppConfig.h | 50 - .../MassStorageKeyboard/Config/LUFAConfig.h | 126 - .../ClassDriver/MassStorageKeyboard/Descriptors.c | 254 -- .../ClassDriver/MassStorageKeyboard/Descriptors.h | 111 - .../MassStorageKeyboard/Lib/DataflashManager.c | 534 --- .../MassStorageKeyboard/Lib/DataflashManager.h | 87 - .../ClassDriver/MassStorageKeyboard/Lib/SCSI.c | 349 -- .../ClassDriver/MassStorageKeyboard/Lib/SCSI.h | 89 - .../MassStorageKeyboard/MassStorageKeyboard.c | 270 -- .../MassStorageKeyboard/MassStorageKeyboard.h | 100 - .../MassStorageKeyboard/MassStorageKeyboard.txt | 100 - .../Device/ClassDriver/MassStorageKeyboard/asf.xml | 70 - .../ClassDriver/MassStorageKeyboard/doxyfile | 2364 ----------- .../ClassDriver/MassStorageKeyboard/makefile | 38 - .../Device/ClassDriver/Mouse/Config/LUFAConfig.h | 126 - .../Demos/Device/ClassDriver/Mouse/Descriptors.c | 221 -- .../Demos/Device/ClassDriver/Mouse/Descriptors.h | 93 - .../Demos/Device/ClassDriver/Mouse/Mouse.c | 202 - .../Demos/Device/ClassDriver/Mouse/Mouse.h | 90 - .../Demos/Device/ClassDriver/Mouse/Mouse.txt | 76 - .../Demos/Device/ClassDriver/Mouse/asf.xml | 62 - .../Demos/Device/ClassDriver/Mouse/doxyfile | 2364 ----------- .../Demos/Device/ClassDriver/Mouse/makefile | 38 - .../ClassDriver/RNDISEthernet/Config/AppConfig.h | 60 - .../ClassDriver/RNDISEthernet/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/RNDISEthernet/Descriptors.c | 244 -- .../Device/ClassDriver/RNDISEthernet/Descriptors.h | 112 - .../ClassDriver/RNDISEthernet/LUFA RNDIS.inf | 59 - .../Device/ClassDriver/RNDISEthernet/Lib/ARP.c | 87 - .../Device/ClassDriver/RNDISEthernet/Lib/ARP.h | 76 - .../Device/ClassDriver/RNDISEthernet/Lib/DHCP.c | 121 - .../Device/ClassDriver/RNDISEthernet/Lib/DHCP.h | 128 - .../ClassDriver/RNDISEthernet/Lib/Ethernet.c | 132 - .../ClassDriver/RNDISEthernet/Lib/Ethernet.h | 101 - .../RNDISEthernet/Lib/EthernetProtocols.h | 92 - .../Device/ClassDriver/RNDISEthernet/Lib/ICMP.c | 83 - .../Device/ClassDriver/RNDISEthernet/Lib/ICMP.h | 83 - .../Device/ClassDriver/RNDISEthernet/Lib/IP.c | 116 - .../Device/ClassDriver/RNDISEthernet/Lib/IP.h | 93 - .../RNDISEthernet/Lib/ProtocolDecoders.c | 277 -- .../RNDISEthernet/Lib/ProtocolDecoders.h | 60 - .../Device/ClassDriver/RNDISEthernet/Lib/TCP.c | 632 --- .../Device/ClassDriver/RNDISEthernet/Lib/TCP.h | 260 -- .../Device/ClassDriver/RNDISEthernet/Lib/UDP.c | 84 - .../Device/ClassDriver/RNDISEthernet/Lib/UDP.h | 70 - .../ClassDriver/RNDISEthernet/Lib/Webserver.c | 203 - .../ClassDriver/RNDISEthernet/Lib/Webserver.h | 57 - .../ClassDriver/RNDISEthernet/RNDISEthernet.c | 179 - .../ClassDriver/RNDISEthernet/RNDISEthernet.h | 84 - .../ClassDriver/RNDISEthernet/RNDISEthernet.txt | 146 - .../Demos/Device/ClassDriver/RNDISEthernet/asf.xml | 80 - .../Device/ClassDriver/RNDISEthernet/doxyfile | 2364 ----------- .../Device/ClassDriver/RNDISEthernet/makefile | 39 - .../ClassDriver/VirtualSerial/Config/LUFAConfig.h | 126 - .../Device/ClassDriver/VirtualSerial/Descriptors.c | 245 -- .../Device/ClassDriver/VirtualSerial/Descriptors.h | 110 - .../VirtualSerial/LUFA VirtualSerial.inf | 66 - .../ClassDriver/VirtualSerial/VirtualSerial.c | 187 - .../ClassDriver/VirtualSerial/VirtualSerial.h | 77 - .../ClassDriver/VirtualSerial/VirtualSerial.txt | 76 - .../Demos/Device/ClassDriver/VirtualSerial/asf.xml | 62 - .../Device/ClassDriver/VirtualSerial/doxyfile | 2364 ----------- .../Device/ClassDriver/VirtualSerial/makefile | 38 - .../VirtualSerialMassStorage/Config/AppConfig.h | 50 - .../VirtualSerialMassStorage/Config/LUFAConfig.h | 126 - .../VirtualSerialMassStorage/Descriptors.c | 295 -- .../VirtualSerialMassStorage/Descriptors.h | 128 - .../LUFA VirtualSerialMassStorage.inf | 66 - .../Lib/DataflashManager.c | 534 --- .../Lib/DataflashManager.h | 89 - .../VirtualSerialMassStorage/Lib/SCSI.c | 349 -- .../VirtualSerialMassStorage/Lib/SCSI.h | 89 - .../VirtualSerialMassStorage.c | 241 -- .../VirtualSerialMassStorage.h | 83 - .../VirtualSerialMassStorage.txt | 93 - .../ClassDriver/VirtualSerialMassStorage/asf.xml | 70 - .../ClassDriver/VirtualSerialMassStorage/doxyfile | 2364 ----------- .../ClassDriver/VirtualSerialMassStorage/makefile | 38 - .../VirtualSerialMouse/Config/LUFAConfig.h | 126 - .../ClassDriver/VirtualSerialMouse/Descriptors.c | 323 -- .../ClassDriver/VirtualSerialMouse/Descriptors.h | 123 - .../VirtualSerialMouse/LUFA VirtualSerialMouse.inf | 66 - .../VirtualSerialMouse/VirtualSerialMouse.c | 267 -- .../VirtualSerialMouse/VirtualSerialMouse.h | 88 - .../VirtualSerialMouse/VirtualSerialMouse.txt | 79 - .../Device/ClassDriver/VirtualSerialMouse/asf.xml | 64 - .../Device/ClassDriver/VirtualSerialMouse/doxyfile | 2364 ----------- .../Device/ClassDriver/VirtualSerialMouse/makefile | 38 - .../LUFA-git/Demos/Device/ClassDriver/makefile | 46 - .../TestAndMeasurement/Config/LUFAConfig.h | 126 - .../Incomplete/TestAndMeasurement/Descriptors.c | 205 - .../Incomplete/TestAndMeasurement/Descriptors.h | 104 - .../TestAndMeasurement/TestAndMeasurement.c | 476 --- .../TestAndMeasurement/TestAndMeasurement.h | 150 - .../Device/Incomplete/TestAndMeasurement/makefile | 38 - .../Demos/Device/LowLevel/AudioInput/AudioInput.c | 259 -- .../Demos/Device/LowLevel/AudioInput/AudioInput.h | 82 - .../Device/LowLevel/AudioInput/AudioInput.txt | 87 - .../Device/LowLevel/AudioInput/Config/AppConfig.h | 51 - .../Device/LowLevel/AudioInput/Config/LUFAConfig.h | 93 - .../Demos/Device/LowLevel/AudioInput/Descriptors.c | 312 -- .../Demos/Device/LowLevel/AudioInput/Descriptors.h | 106 - .../Demos/Device/LowLevel/AudioInput/asf.xml | 52 - .../Demos/Device/LowLevel/AudioInput/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/AudioInput/makefile | 38 - .../Device/LowLevel/AudioOutput/AudioOutput.c | 293 -- .../Device/LowLevel/AudioOutput/AudioOutput.h | 74 - .../Device/LowLevel/AudioOutput/AudioOutput.txt | 92 - .../Device/LowLevel/AudioOutput/Config/AppConfig.h | 50 - .../LowLevel/AudioOutput/Config/LUFAConfig.h | 93 - .../Device/LowLevel/AudioOutput/Descriptors.c | 312 -- .../Device/LowLevel/AudioOutput/Descriptors.h | 106 - .../Demos/Device/LowLevel/AudioOutput/asf.xml | 51 - .../Demos/Device/LowLevel/AudioOutput/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/AudioOutput/makefile | 38 - .../Demos/Device/LowLevel/BulkVendor/BulkVendor.c | 136 - .../Demos/Device/LowLevel/BulkVendor/BulkVendor.h | 76 - .../Device/LowLevel/BulkVendor/BulkVendor.txt | 69 - .../Device/LowLevel/BulkVendor/Config/LUFAConfig.h | 126 - .../Demos/Device/LowLevel/BulkVendor/Descriptors.c | 194 - .../Demos/Device/LowLevel/BulkVendor/Descriptors.h | 96 - .../BulkVendor/HostTestApp/test_bulk_vendor.py | 67 - .../WindowsDriver/LUFA_Bulk_Vendor_Demo.inf | Bin 8150 -> 0 bytes .../BulkVendor/WindowsDriver/amd64/libusb0.dll | Bin 76384 -> 0 bytes .../BulkVendor/WindowsDriver/amd64/libusb0.sys | Bin 52832 -> 0 bytes .../BulkVendor/WindowsDriver/ia64/libusb0.dll | Bin 157792 -> 0 bytes .../BulkVendor/WindowsDriver/ia64/libusb0.sys | Bin 110176 -> 0 bytes .../BulkVendor/WindowsDriver/installer_x64.exe | Bin 25088 -> 0 bytes .../BulkVendor/WindowsDriver/installer_x86.exe | Bin 23552 -> 0 bytes .../license/libusb0/installer_license.txt | 851 ---- .../BulkVendor/WindowsDriver/x86/libusb0.sys | Bin 42592 -> 0 bytes .../BulkVendor/WindowsDriver/x86/libusb0_x86.dll | Bin 67680 -> 0 bytes .../Demos/Device/LowLevel/BulkVendor/asf.xml | 61 - .../Demos/Device/LowLevel/BulkVendor/doxyfile | 2366 ----------- .../Demos/Device/LowLevel/BulkVendor/makefile | 38 - .../LowLevel/DualVirtualSerial/Config/LUFAConfig.h | 126 - .../LowLevel/DualVirtualSerial/Descriptors.c | 360 -- .../LowLevel/DualVirtualSerial/Descriptors.h | 135 - .../LowLevel/DualVirtualSerial/DualVirtualSerial.c | 299 -- .../LowLevel/DualVirtualSerial/DualVirtualSerial.h | 77 - .../DualVirtualSerial/DualVirtualSerial.txt | 89 - .../DualVirtualSerial/LUFA DualVirtualSerial.inf | 66 - .../Device/LowLevel/DualVirtualSerial/asf.xml | 62 - .../Device/LowLevel/DualVirtualSerial/doxyfile | 2364 ----------- .../Device/LowLevel/DualVirtualSerial/makefile | 38 - .../Device/LowLevel/GenericHID/Config/AppConfig.h | 48 - .../Device/LowLevel/GenericHID/Config/LUFAConfig.h | 126 - .../Demos/Device/LowLevel/GenericHID/Descriptors.c | 238 -- .../Demos/Device/LowLevel/GenericHID/Descriptors.h | 99 - .../Demos/Device/LowLevel/GenericHID/GenericHID.c | 253 -- .../Demos/Device/LowLevel/GenericHID/GenericHID.h | 81 - .../Device/LowLevel/GenericHID/GenericHID.txt | 79 - .../GenericHID/HostTestApp/test_generic_hid.py | 96 - .../Demos/Device/LowLevel/GenericHID/asf.xml | 63 - .../Demos/Device/LowLevel/GenericHID/doxyfile | 2365 ----------- .../Demos/Device/LowLevel/GenericHID/makefile | 38 - .../Device/LowLevel/Joystick/Config/LUFAConfig.h | 126 - .../Demos/Device/LowLevel/Joystick/Descriptors.c | 240 -- .../Demos/Device/LowLevel/Joystick/Descriptors.h | 99 - .../Demos/Device/LowLevel/Joystick/Joystick.c | 217 - .../Demos/Device/LowLevel/Joystick/Joystick.h | 91 - .../Demos/Device/LowLevel/Joystick/Joystick.txt | 77 - .../Demos/Device/LowLevel/Joystick/asf.xml | 62 - .../Demos/Device/LowLevel/Joystick/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/Joystick/makefile | 38 - .../Device/LowLevel/Keyboard/Config/LUFAConfig.h | 126 - .../Demos/Device/LowLevel/Keyboard/Descriptors.c | 255 -- .../Demos/Device/LowLevel/Keyboard/Descriptors.h | 98 - .../Demos/Device/LowLevel/Keyboard/Keyboard.c | 383 -- .../Demos/Device/LowLevel/Keyboard/Keyboard.h | 85 - .../Demos/Device/LowLevel/Keyboard/Keyboard.txt | 76 - .../Demos/Device/LowLevel/Keyboard/asf.xml | 62 - .../Demos/Device/LowLevel/Keyboard/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/Keyboard/makefile | 38 - .../LowLevel/KeyboardMouse/Config/LUFAConfig.h | 126 - .../Device/LowLevel/KeyboardMouse/Descriptors.c | 346 -- .../Device/LowLevel/KeyboardMouse/Descriptors.h | 107 - .../Device/LowLevel/KeyboardMouse/KeyboardMouse.c | 321 -- .../Device/LowLevel/KeyboardMouse/KeyboardMouse.h | 77 - .../LowLevel/KeyboardMouse/KeyboardMouse.txt | 81 - .../Demos/Device/LowLevel/KeyboardMouse/asf.xml | 62 - .../Demos/Device/LowLevel/KeyboardMouse/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/KeyboardMouse/makefile | 38 - .../Demos/Device/LowLevel/MIDI/Config/LUFAConfig.h | 126 - .../Demos/Device/LowLevel/MIDI/Descriptors.c | 314 -- .../Demos/Device/LowLevel/MIDI/Descriptors.h | 108 - .../LUFA-git/Demos/Device/LowLevel/MIDI/MIDI.c | 224 -- .../LUFA-git/Demos/Device/LowLevel/MIDI/MIDI.h | 76 - .../LUFA-git/Demos/Device/LowLevel/MIDI/MIDI.txt | 78 - .../LUFA-git/Demos/Device/LowLevel/MIDI/asf.xml | 62 - .../LUFA-git/Demos/Device/LowLevel/MIDI/doxyfile | 2364 ----------- .../LUFA-git/Demos/Device/LowLevel/MIDI/makefile | 38 - .../Device/LowLevel/MassStorage/Config/AppConfig.h | 50 - .../LowLevel/MassStorage/Config/LUFAConfig.h | 126 - .../Device/LowLevel/MassStorage/Descriptors.c | 194 - .../Device/LowLevel/MassStorage/Descriptors.h | 98 - .../LowLevel/MassStorage/Lib/DataflashManager.c | 530 --- .../LowLevel/MassStorage/Lib/DataflashManager.h | 86 - .../Demos/Device/LowLevel/MassStorage/Lib/SCSI.c | 344 -- .../Demos/Device/LowLevel/MassStorage/Lib/SCSI.h | 150 - .../Device/LowLevel/MassStorage/MassStorage.c | 332 -- .../Device/LowLevel/MassStorage/MassStorage.h | 92 - .../Device/LowLevel/MassStorage/MassStorage.txt | 100 - .../Demos/Device/LowLevel/MassStorage/asf.xml | 67 - .../Demos/Device/LowLevel/MassStorage/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/MassStorage/makefile | 38 - .../Device/LowLevel/Mouse/Config/LUFAConfig.h | 126 - .../Demos/Device/LowLevel/Mouse/Descriptors.c | 240 -- .../Demos/Device/LowLevel/Mouse/Descriptors.h | 93 - .../LUFA-git/Demos/Device/LowLevel/Mouse/Mouse.c | 311 -- .../LUFA-git/Demos/Device/LowLevel/Mouse/Mouse.h | 81 - .../LUFA-git/Demos/Device/LowLevel/Mouse/Mouse.txt | 76 - .../LUFA-git/Demos/Device/LowLevel/Mouse/asf.xml | 62 - .../LUFA-git/Demos/Device/LowLevel/Mouse/doxyfile | 2364 ----------- .../LUFA-git/Demos/Device/LowLevel/Mouse/makefile | 38 - .../LowLevel/RNDISEthernet/Config/AppConfig.h | 60 - .../LowLevel/RNDISEthernet/Config/LUFAConfig.h | 126 - .../Device/LowLevel/RNDISEthernet/Descriptors.c | 244 -- .../Device/LowLevel/RNDISEthernet/Descriptors.h | 112 - .../Device/LowLevel/RNDISEthernet/LUFA RNDIS.inf | 59 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.c | 87 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/ARP.h | 78 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.c | 121 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/DHCP.h | 128 - .../Device/LowLevel/RNDISEthernet/Lib/Ethernet.c | 136 - .../Device/LowLevel/RNDISEthernet/Lib/Ethernet.h | 111 - .../LowLevel/RNDISEthernet/Lib/EthernetProtocols.h | 88 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.c | 81 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/ICMP.h | 82 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/IP.c | 113 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/IP.h | 92 - .../LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c | 276 -- .../LowLevel/RNDISEthernet/Lib/ProtocolDecoders.h | 60 - .../Device/LowLevel/RNDISEthernet/Lib/RNDIS.c | 394 -- .../Device/LowLevel/RNDISEthernet/Lib/RNDIS.h | 67 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c | 631 --- .../Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h | 260 -- .../Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.c | 84 - .../Demos/Device/LowLevel/RNDISEthernet/Lib/UDP.h | 73 - .../Device/LowLevel/RNDISEthernet/Lib/Webserver.c | 203 - .../Device/LowLevel/RNDISEthernet/Lib/Webserver.h | 57 - .../Device/LowLevel/RNDISEthernet/RNDISEthernet.c | 294 -- .../Device/LowLevel/RNDISEthernet/RNDISEthernet.h | 87 - .../LowLevel/RNDISEthernet/RNDISEthernet.txt | 146 - .../Demos/Device/LowLevel/RNDISEthernet/asf.xml | 85 - .../Demos/Device/LowLevel/RNDISEthernet/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/RNDISEthernet/makefile | 39 - .../LowLevel/VirtualSerial/Config/LUFAConfig.h | 126 - .../Device/LowLevel/VirtualSerial/Descriptors.c | 245 -- .../Device/LowLevel/VirtualSerial/Descriptors.h | 110 - .../LowLevel/VirtualSerial/LUFA VirtualSerial.inf | 66 - .../Device/LowLevel/VirtualSerial/VirtualSerial.c | 243 -- .../Device/LowLevel/VirtualSerial/VirtualSerial.h | 76 - .../LowLevel/VirtualSerial/VirtualSerial.txt | 76 - .../Demos/Device/LowLevel/VirtualSerial/asf.xml | 63 - .../Demos/Device/LowLevel/VirtualSerial/doxyfile | 2364 ----------- .../Demos/Device/LowLevel/VirtualSerial/makefile | 38 - .../lufa/LUFA-git/Demos/Device/LowLevel/makefile | 46 - .../protocol/lufa/LUFA-git/Demos/Device/makefile | 21 - .../MouseHostDevice/Config/LUFAConfig.h | 93 - .../ClassDriver/MouseHostDevice/Descriptors.c | 221 -- .../ClassDriver/MouseHostDevice/Descriptors.h | 93 - .../ClassDriver/MouseHostDevice/DeviceFunctions.c | 155 - .../ClassDriver/MouseHostDevice/DeviceFunctions.h | 64 - .../ClassDriver/MouseHostDevice/HostFunctions.c | 184 - .../ClassDriver/MouseHostDevice/HostFunctions.h | 56 - .../ClassDriver/MouseHostDevice/MouseHostDevice.c | 99 - .../ClassDriver/MouseHostDevice/MouseHostDevice.h | 78 - .../MouseHostDevice/MouseHostDevice.txt | 80 - .../DualRole/ClassDriver/MouseHostDevice/asf.xml | 56 - .../DualRole/ClassDriver/MouseHostDevice/doxyfile | 2364 ----------- .../DualRole/ClassDriver/MouseHostDevice/makefile | 38 - .../LUFA-git/Demos/DualRole/ClassDriver/makefile | 46 - .../protocol/lufa/LUFA-git/Demos/DualRole/makefile | 20 - .../AndroidAccessoryHost/AndroidAccessoryHost.c | 239 -- .../AndroidAccessoryHost/AndroidAccessoryHost.h | 79 - .../AndroidAccessoryHost/AndroidAccessoryHost.txt | 62 - .../AndroidHostApp/AndroidHostApp.zip | Bin 552813 -> 0 bytes .../AndroidAccessoryHost/Config/LUFAConfig.h | 93 - .../Host/ClassDriver/AndroidAccessoryHost/asf.xml | 49 - .../Host/ClassDriver/AndroidAccessoryHost/doxyfile | 2364 ----------- .../Host/ClassDriver/AndroidAccessoryHost/makefile | 38 - .../ClassDriver/AudioInputHost/AudioInputHost.c | 239 -- .../ClassDriver/AudioInputHost/AudioInputHost.h | 77 - .../ClassDriver/AudioInputHost/AudioInputHost.txt | 66 - .../ClassDriver/AudioInputHost/Config/LUFAConfig.h | 93 - .../Demos/Host/ClassDriver/AudioInputHost/asf.xml | 48 - .../Demos/Host/ClassDriver/AudioInputHost/doxyfile | 2364 ----------- .../Demos/Host/ClassDriver/AudioInputHost/makefile | 38 - .../ClassDriver/AudioOutputHost/AudioOutputHost.c | 243 -- .../ClassDriver/AudioOutputHost/AudioOutputHost.h | 87 - .../AudioOutputHost/AudioOutputHost.txt | 83 - .../ClassDriver/AudioOutputHost/Config/AppConfig.h | 51 - .../AudioOutputHost/Config/LUFAConfig.h | 93 - .../Demos/Host/ClassDriver/AudioOutputHost/asf.xml | 52 - .../Host/ClassDriver/AudioOutputHost/doxyfile | 2364 ----------- .../Host/ClassDriver/AudioOutputHost/makefile | 38 - .../JoystickHostWithParser/Config/LUFAConfig.h | 93 - .../JoystickHostWithParser.c | 286 -- .../JoystickHostWithParser.h | 95 - .../JoystickHostWithParser.txt | 71 - .../ClassDriver/JoystickHostWithParser/asf.xml | 48 - .../ClassDriver/JoystickHostWithParser/doxyfile | 2364 ----------- .../ClassDriver/JoystickHostWithParser/makefile | 38 - .../ClassDriver/KeyboardHost/Config/LUFAConfig.h | 93 - .../Host/ClassDriver/KeyboardHost/KeyboardHost.c | 244 -- .../Host/ClassDriver/KeyboardHost/KeyboardHost.h | 78 - .../Host/ClassDriver/KeyboardHost/KeyboardHost.txt | 71 - .../Demos/Host/ClassDriver/KeyboardHost/asf.xml | 48 - .../Demos/Host/ClassDriver/KeyboardHost/doxyfile | 2364 ----------- .../Demos/Host/ClassDriver/KeyboardHost/makefile | 38 - .../KeyboardHostWithParser/Config/LUFAConfig.h | 93 - .../KeyboardHostWithParser.c | 287 -- .../KeyboardHostWithParser.h | 83 - .../KeyboardHostWithParser.txt | 71 - .../ClassDriver/KeyboardHostWithParser/asf.xml | 48 - .../ClassDriver/KeyboardHostWithParser/doxyfile | 2364 ----------- .../ClassDriver/KeyboardHostWithParser/makefile | 38 - .../Host/ClassDriver/MIDIHost/Config/LUFAConfig.h | 93 - .../Demos/Host/ClassDriver/MIDIHost/MIDIHost.c | 272 -- .../Demos/Host/ClassDriver/MIDIHost/MIDIHost.h | 81 - .../Demos/Host/ClassDriver/MIDIHost/MIDIHost.txt | 60 - .../Demos/Host/ClassDriver/MIDIHost/asf.xml | 50 - .../Demos/Host/ClassDriver/MIDIHost/doxyfile | 2364 ----------- .../Demos/Host/ClassDriver/MIDIHost/makefile | 38 - .../MassStorageHost/Config/LUFAConfig.h | 93 - .../ClassDriver/MassStorageHost/MassStorageHost.c | 311 -- .../ClassDriver/MassStorageHost/MassStorageHost.h | 82 - .../MassStorageHost/MassStorageHost.txt | 68 - .../Demos/Host/ClassDriver/MassStorageHost/asf.xml | 48 - .../Host/ClassDriver/MassStorageHost/doxyfile | 2364 ----------- .../Host/ClassDriver/MassStorageHost/makefile | 38 - .../Host/ClassDriver/MouseHost/Config/LUFAConfig.h | 93 - .../Demos/Host/ClassDriver/MouseHost/MouseHost.c | 227 -- .../Demos/Host/ClassDriver/MouseHost/MouseHost.h | 78 - .../Demos/Host/ClassDriver/MouseHost/MouseHost.txt | 74 - .../Demos/Host/ClassDriver/MouseHost/asf.xml | 48 - .../Demos/Host/ClassDriver/MouseHost/doxyfile | 2364 ----------- .../Demos/Host/ClassDriver/MouseHost/makefile | 38 - .../MouseHostWithParser/Config/LUFAConfig.h | 93 - .../MouseHostWithParser/MouseHostWithParser.c | 295 -- .../MouseHostWithParser/MouseHostWithParser.h | 98 - .../MouseHostWithParser/MouseHostWithParser.txt | 71 - .../Host/ClassDriver/MouseHostWithParser/asf.xml | 48 - .../Host/ClassDriver/MouseHostWithParser/doxyfile | 2364 ----------- .../Host/ClassDriver/MouseHostWithParser/makefile | 38 - .../ClassDriver/PrinterHost/Config/LUFAConfig.h | 93 - .../Host/ClassDriver/PrinterHost/PrinterHost.c | 234 -- .../Host/ClassDriver/PrinterHost/PrinterHost.h | 81 - .../Host/ClassDriver/PrinterHost/PrinterHost.txt | 66 - .../Demos/Host/ClassDriver/PrinterHost/asf.xml | 48 - .../Demos/Host/ClassDriver/PrinterHost/doxyfile | 2364 ----------- .../Demos/Host/ClassDriver/PrinterHost/makefile | 38 - .../RNDISEthernetHost/Config/LUFAConfig.h | 93 - .../RNDISEthernetHost/RNDISEthernetHost.c | 253 -- .../RNDISEthernetHost/RNDISEthernetHost.h | 81 - .../RNDISEthernetHost/RNDISEthernetHost.txt | 63 - .../Host/ClassDriver/RNDISEthernetHost/asf.xml | 48 - .../Host/ClassDriver/RNDISEthernetHost/doxyfile | 2364 ----------- .../Host/ClassDriver/RNDISEthernetHost/makefile | 38 - .../ClassDriver/StillImageHost/Config/LUFAConfig.h | 93 - .../ClassDriver/StillImageHost/StillImageHost.c | 230 -- .../ClassDriver/StillImageHost/StillImageHost.h | 78 - .../ClassDriver/StillImageHost/StillImageHost.txt | 65 - .../Demos/Host/ClassDriver/StillImageHost/asf.xml | 48 - .../Demos/Host/ClassDriver/StillImageHost/doxyfile | 2364 ----------- .../Demos/Host/ClassDriver/StillImageHost/makefile | 38 - .../VirtualSerialHost/Config/LUFAConfig.h | 93 - .../VirtualSerialHost/VirtualSerialHost.c | 217 - .../VirtualSerialHost/VirtualSerialHost.h | 78 - .../VirtualSerialHost/VirtualSerialHost.txt | 66 - .../Host/ClassDriver/VirtualSerialHost/asf.xml | 48 - .../Host/ClassDriver/VirtualSerialHost/doxyfile | 2364 ----------- .../Host/ClassDriver/VirtualSerialHost/makefile | 38 - .../lufa/LUFA-git/Demos/Host/ClassDriver/makefile | 46 - .../AndroidAccessoryHost/AndroidAccessoryHost.c | 263 -- .../AndroidAccessoryHost/AndroidAccessoryHost.h | 86 - .../AndroidAccessoryHost/AndroidAccessoryHost.txt | 62 - .../AndroidAccessoryHost/Config/LUFAConfig.h | 93 - .../AndroidAccessoryHost/ConfigDescriptor.c | 164 - .../AndroidAccessoryHost/ConfigDescriptor.h | 67 - .../AndroidAccessoryHost/DeviceDescriptor.c | 67 - .../AndroidAccessoryHost/DeviceDescriptor.h | 60 - .../Lib/AndroidAccessoryCommands.c | 84 - .../Lib/AndroidAccessoryCommands.h | 52 - .../Host/LowLevel/AndroidAccessoryHost/asf.xml | 55 - .../Host/LowLevel/AndroidAccessoryHost/doxyfile | 2364 ----------- .../Host/LowLevel/AndroidAccessoryHost/makefile | 38 - .../Host/LowLevel/AudioInputHost/AudioInputHost.c | 250 -- .../Host/LowLevel/AudioInputHost/AudioInputHost.h | 79 - .../LowLevel/AudioInputHost/AudioInputHost.txt | 66 - .../LowLevel/AudioInputHost/Config/LUFAConfig.h | 93 - .../LowLevel/AudioInputHost/ConfigDescriptor.c | 220 -- .../LowLevel/AudioInputHost/ConfigDescriptor.h | 72 - .../Demos/Host/LowLevel/AudioInputHost/asf.xml | 50 - .../Demos/Host/LowLevel/AudioInputHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/AudioInputHost/makefile | 38 - .../LowLevel/AudioOutputHost/AudioOutputHost.c | 250 -- .../LowLevel/AudioOutputHost/AudioOutputHost.h | 88 - .../LowLevel/AudioOutputHost/AudioOutputHost.txt | 83 - .../LowLevel/AudioOutputHost/Config/AppConfig.h | 51 - .../LowLevel/AudioOutputHost/Config/LUFAConfig.h | 93 - .../LowLevel/AudioOutputHost/ConfigDescriptor.c | 220 -- .../LowLevel/AudioOutputHost/ConfigDescriptor.h | 73 - .../Demos/Host/LowLevel/AudioOutputHost/asf.xml | 54 - .../Demos/Host/LowLevel/AudioOutputHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/AudioOutputHost/makefile | 38 - .../LowLevel/GenericHIDHost/Config/LUFAConfig.h | 93 - .../LowLevel/GenericHIDHost/ConfigDescriptor.c | 183 - .../LowLevel/GenericHIDHost/ConfigDescriptor.h | 69 - .../Host/LowLevel/GenericHIDHost/GenericHIDHost.c | 269 -- .../Host/LowLevel/GenericHIDHost/GenericHIDHost.h | 93 - .../LowLevel/GenericHIDHost/GenericHIDHost.txt | 64 - .../Demos/Host/LowLevel/GenericHIDHost/asf.xml | 50 - .../Demos/Host/LowLevel/GenericHIDHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/GenericHIDHost/makefile | 38 - .../JoystickHostWithParser/Config/LUFAConfig.h | 93 - .../JoystickHostWithParser/ConfigDescriptor.c | 187 - .../JoystickHostWithParser/ConfigDescriptor.h | 69 - .../LowLevel/JoystickHostWithParser/HIDReport.c | 111 - .../LowLevel/JoystickHostWithParser/HIDReport.h | 79 - .../JoystickHostWithParser.c | 273 -- .../JoystickHostWithParser.h | 83 - .../JoystickHostWithParser.txt | 71 - .../Host/LowLevel/JoystickHostWithParser/asf.xml | 52 - .../Host/LowLevel/JoystickHostWithParser/doxyfile | 2364 ----------- .../Host/LowLevel/JoystickHostWithParser/makefile | 38 - .../Host/LowLevel/KeyboardHost/Config/LUFAConfig.h | 93 - .../Host/LowLevel/KeyboardHost/ConfigDescriptor.c | 155 - .../Host/LowLevel/KeyboardHost/ConfigDescriptor.h | 66 - .../Host/LowLevel/KeyboardHost/KeyboardHost.c | 264 -- .../Host/LowLevel/KeyboardHost/KeyboardHost.h | 80 - .../Host/LowLevel/KeyboardHost/KeyboardHost.txt | 73 - .../Demos/Host/LowLevel/KeyboardHost/asf.xml | 50 - .../Demos/Host/LowLevel/KeyboardHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/KeyboardHost/makefile | 38 - .../KeyboardHostWithParser/Config/LUFAConfig.h | 93 - .../KeyboardHostWithParser/ConfigDescriptor.c | 189 - .../KeyboardHostWithParser/ConfigDescriptor.h | 67 - .../LowLevel/KeyboardHostWithParser/HIDReport.c | 90 - .../LowLevel/KeyboardHostWithParser/HIDReport.h | 67 - .../KeyboardHostWithParser.c | 285 -- .../KeyboardHostWithParser.h | 78 - .../KeyboardHostWithParser.txt | 71 - .../Host/LowLevel/KeyboardHostWithParser/asf.xml | 52 - .../Host/LowLevel/KeyboardHostWithParser/doxyfile | 2364 ----------- .../Host/LowLevel/KeyboardHostWithParser/makefile | 38 - .../Host/LowLevel/MIDIHost/Config/LUFAConfig.h | 93 - .../Host/LowLevel/MIDIHost/ConfigDescriptor.c | 173 - .../Host/LowLevel/MIDIHost/ConfigDescriptor.h | 69 - .../Demos/Host/LowLevel/MIDIHost/MIDIHost.c | 266 -- .../Demos/Host/LowLevel/MIDIHost/MIDIHost.h | 82 - .../Demos/Host/LowLevel/MIDIHost/MIDIHost.txt | 60 - .../LUFA-git/Demos/Host/LowLevel/MIDIHost/asf.xml | 52 - .../LUFA-git/Demos/Host/LowLevel/MIDIHost/doxyfile | 2364 ----------- .../LUFA-git/Demos/Host/LowLevel/MIDIHost/makefile | 38 - .../LowLevel/MassStorageHost/Config/LUFAConfig.h | 93 - .../LowLevel/MassStorageHost/ConfigDescriptor.c | 173 - .../LowLevel/MassStorageHost/ConfigDescriptor.h | 78 - .../MassStorageHost/Lib/MassStoreCommands.c | 635 --- .../MassStorageHost/Lib/MassStoreCommands.h | 86 - .../LowLevel/MassStorageHost/MassStorageHost.c | 373 -- .../LowLevel/MassStorageHost/MassStorageHost.h | 91 - .../LowLevel/MassStorageHost/MassStorageHost.txt | 68 - .../Demos/Host/LowLevel/MassStorageHost/asf.xml | 53 - .../Demos/Host/LowLevel/MassStorageHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/MassStorageHost/makefile | 38 - .../Host/LowLevel/MouseHost/Config/LUFAConfig.h | 93 - .../Host/LowLevel/MouseHost/ConfigDescriptor.c | 159 - .../Host/LowLevel/MouseHost/ConfigDescriptor.h | 66 - .../Demos/Host/LowLevel/MouseHost/MouseHost.c | 250 -- .../Demos/Host/LowLevel/MouseHost/MouseHost.h | 82 - .../Demos/Host/LowLevel/MouseHost/MouseHost.txt | 74 - .../LUFA-git/Demos/Host/LowLevel/MouseHost/asf.xml | 50 - .../Demos/Host/LowLevel/MouseHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/MouseHost/makefile | 38 - .../MouseHostWithParser/Config/LUFAConfig.h | 93 - .../MouseHostWithParser/ConfigDescriptor.c | 187 - .../MouseHostWithParser/ConfigDescriptor.h | 67 - .../Host/LowLevel/MouseHostWithParser/HIDReport.c | 111 - .../Host/LowLevel/MouseHostWithParser/HIDReport.h | 82 - .../MouseHostWithParser/MouseHostWithParser.c | 289 -- .../MouseHostWithParser/MouseHostWithParser.h | 83 - .../MouseHostWithParser/MouseHostWithParser.txt | 71 - .../Host/LowLevel/MouseHostWithParser/asf.xml | 52 - .../Host/LowLevel/MouseHostWithParser/doxyfile | 2364 ----------- .../Host/LowLevel/MouseHostWithParser/makefile | 38 - .../Host/LowLevel/PrinterHost/Config/LUFAConfig.h | 93 - .../Host/LowLevel/PrinterHost/ConfigDescriptor.c | 177 - .../Host/LowLevel/PrinterHost/ConfigDescriptor.h | 76 - .../LowLevel/PrinterHost/Lib/PrinterCommands.c | 162 - .../LowLevel/PrinterHost/Lib/PrinterCommands.h | 56 - .../Demos/Host/LowLevel/PrinterHost/PrinterHost.c | 226 -- .../Demos/Host/LowLevel/PrinterHost/PrinterHost.h | 88 - .../Host/LowLevel/PrinterHost/PrinterHost.txt | 66 - .../Demos/Host/LowLevel/PrinterHost/asf.xml | 53 - .../Demos/Host/LowLevel/PrinterHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/PrinterHost/makefile | 38 - .../LowLevel/RNDISEthernetHost/Config/LUFAConfig.h | 93 - .../LowLevel/RNDISEthernetHost/ConfigDescriptor.c | 235 -- .../LowLevel/RNDISEthernetHost/ConfigDescriptor.h | 73 - .../LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c | 311 -- .../LowLevel/RNDISEthernetHost/Lib/RNDISCommands.h | 70 - .../LowLevel/RNDISEthernetHost/RNDISEthernetHost.c | 249 -- .../LowLevel/RNDISEthernetHost/RNDISEthernetHost.h | 85 - .../Host/LowLevel/RNDISEthernetHost/RNDISHost.txt | 63 - .../Demos/Host/LowLevel/RNDISEthernetHost/asf.xml | 53 - .../Demos/Host/LowLevel/RNDISEthernetHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/RNDISEthernetHost/makefile | 38 - .../LowLevel/StillImageHost/Config/LUFAConfig.h | 93 - .../LowLevel/StillImageHost/ConfigDescriptor.c | 190 - .../LowLevel/StillImageHost/ConfigDescriptor.h | 72 - .../Host/LowLevel/StillImageHost/Lib/PIMACodes.h | 45 - .../StillImageHost/Lib/StillImageCommands.c | 268 -- .../StillImageHost/Lib/StillImageCommands.h | 65 - .../Host/LowLevel/StillImageHost/StillImageHost.c | 365 -- .../Host/LowLevel/StillImageHost/StillImageHost.h | 89 - .../LowLevel/StillImageHost/StillImageHost.txt | 65 - .../Demos/Host/LowLevel/StillImageHost/asf.xml | 54 - .../Demos/Host/LowLevel/StillImageHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/StillImageHost/makefile | 38 - .../LowLevel/VirtualSerialHost/Config/LUFAConfig.h | 93 - .../LowLevel/VirtualSerialHost/ConfigDescriptor.c | 234 -- .../LowLevel/VirtualSerialHost/ConfigDescriptor.h | 73 - .../LowLevel/VirtualSerialHost/VirtualSerialHost.c | 239 -- .../LowLevel/VirtualSerialHost/VirtualSerialHost.h | 80 - .../VirtualSerialHost/VirtualSerialHost.txt | 66 - .../Demos/Host/LowLevel/VirtualSerialHost/asf.xml | 50 - .../Demos/Host/LowLevel/VirtualSerialHost/doxyfile | 2364 ----------- .../Demos/Host/LowLevel/VirtualSerialHost/makefile | 38 - .../lufa/LUFA-git/Demos/Host/LowLevel/makefile | 46 - .../protocol/lufa/LUFA-git/Demos/Host/makefile | 21 - tmk_core/protocol/lufa/LUFA-git/Demos/makefile | 22 - .../LUFA-git/Projects/AVRISP-MKII/AVRISP-MKII.c | 156 - .../LUFA-git/Projects/AVRISP-MKII/AVRISP-MKII.h | 91 - .../LUFA-git/Projects/AVRISP-MKII/AVRISP-MKII.txt | 385 -- .../Projects/AVRISP-MKII/AVRISPDescriptors.c | 302 -- .../Projects/AVRISP-MKII/AVRISPDescriptors.h | 128 - .../Projects/AVRISP-MKII/Config/AppConfig.h | 70 - .../Projects/AVRISP-MKII/Config/LUFAConfig.h | 93 - .../Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.c | 531 --- .../Projects/AVRISP-MKII/Lib/ISP/ISPProtocol.h | 81 - .../Projects/AVRISP-MKII/Lib/ISP/ISPTarget.c | 370 -- .../Projects/AVRISP-MKII/Lib/ISP/ISPTarget.h | 147 - .../LUFA-git/Projects/AVRISP-MKII/Lib/V2Protocol.c | 267 -- .../LUFA-git/Projects/AVRISP-MKII/Lib/V2Protocol.h | 105 - .../Projects/AVRISP-MKII/Lib/V2ProtocolConstants.h | 90 - .../Projects/AVRISP-MKII/Lib/V2ProtocolParams.c | 207 - .../Projects/AVRISP-MKII/Lib/V2ProtocolParams.h | 91 - .../Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.c | 274 -- .../Projects/AVRISP-MKII/Lib/XPROG/TINYNVM.h | 86 - .../Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.c | 468 --- .../Projects/AVRISP-MKII/Lib/XPROG/XMEGANVM.h | 140 - .../Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.c | 480 --- .../Projects/AVRISP-MKII/Lib/XPROG/XPROGProtocol.h | 136 - .../Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c | 209 - .../Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.h | 136 - .../lufa/LUFA-git/Projects/AVRISP-MKII/asf.xml | 90 - .../lufa/LUFA-git/Projects/AVRISP-MKII/doxyfile | 2364 ----------- .../lufa/LUFA-git/Projects/AVRISP-MKII/makefile | 39 - .../lufa/LUFA-git/Projects/Benito/Benito.c | 311 -- .../lufa/LUFA-git/Projects/Benito/Benito.h | 79 - .../lufa/LUFA-git/Projects/Benito/Benito.txt | 106 - .../LUFA-git/Projects/Benito/Config/AppConfig.h | 57 - .../LUFA-git/Projects/Benito/Config/LUFAConfig.h | 93 - .../lufa/LUFA-git/Projects/Benito/Descriptors.c | 244 -- .../lufa/LUFA-git/Projects/Benito/Descriptors.h | 112 - .../Projects/Benito/LUFA Benito Programmer.inf | 66 - .../protocol/lufa/LUFA-git/Projects/Benito/asf.xml | 53 - .../lufa/LUFA-git/Projects/Benito/doxyfile | 2364 ----------- .../lufa/LUFA-git/Projects/Benito/makefile | 38 - .../Projects/HIDReportViewer/Config/LUFAConfig.h | 93 - .../Projects/HIDReportViewer/HIDReportViewer.c | 325 -- .../Projects/HIDReportViewer/HIDReportViewer.h | 87 - .../Projects/HIDReportViewer/HIDReportViewer.txt | 64 - .../lufa/LUFA-git/Projects/HIDReportViewer/asf.xml | 48 - .../LUFA-git/Projects/HIDReportViewer/doxyfile | 2364 ----------- .../LUFA-git/Projects/HIDReportViewer/makefile | 38 - .../LEDNotifier/CPUUsageApp/CPUMonitor.Designer.cs | 131 - .../Projects/LEDNotifier/CPUUsageApp/CPUMonitor.cs | 115 - .../LEDNotifier/CPUUsageApp/CPUMonitor.csproj | 95 - .../LEDNotifier/CPUUsageApp/CPUMonitor.resx | 132 - .../Projects/LEDNotifier/CPUUsageApp/Program.cs | 21 - .../CPUUsageApp/Properties/AssemblyInfo.cs | 36 - .../CPUUsageApp/Properties/Resources.Designer.cs | 63 - .../CPUUsageApp/Properties/Resources.resx | 117 - .../CPUUsageApp/Properties/Settings.Designer.cs | 26 - .../CPUUsageApp/Properties/Settings.settings | 7 - .../Projects/LEDNotifier/Config/LUFAConfig.h | 93 - .../LUFA-git/Projects/LEDNotifier/Descriptors.c | 245 -- .../LUFA-git/Projects/LEDNotifier/Descriptors.h | 110 - .../LEDNotifier/LEDMixerApp/LEDMixer.Designer.cs | 149 - .../Projects/LEDNotifier/LEDMixerApp/LEDMixer.cs | 75 - .../LEDNotifier/LEDMixerApp/LEDMixer.csproj | 95 - .../Projects/LEDNotifier/LEDMixerApp/LEDMixer.resx | 123 - .../Projects/LEDNotifier/LEDMixerApp/Program.cs | 21 - .../LEDMixerApp/Properties/AssemblyInfo.cs | 36 - .../LEDMixerApp/Properties/Resources.Designer.cs | 63 - .../LEDMixerApp/Properties/Resources.resx | 117 - .../LEDMixerApp/Properties/Settings.Designer.cs | 26 - .../LEDMixerApp/Properties/Settings.settings | 7 - .../LUFA-git/Projects/LEDNotifier/LEDNotifier.c | 176 - .../LUFA-git/Projects/LEDNotifier/LEDNotifier.h | 60 - .../LUFA-git/Projects/LEDNotifier/LEDNotifier.txt | 63 - .../Projects/LEDNotifier/LUFA LED Notifier.inf | 66 - .../lufa/LUFA-git/Projects/LEDNotifier/asf.xml | 51 - .../lufa/LUFA-git/Projects/LEDNotifier/doxyfile | 2366 ----------- .../lufa/LUFA-git/Projects/LEDNotifier/makefile | 38 - .../Projects/MIDIToneGenerator/Config/AppConfig.h | 48 - .../Projects/MIDIToneGenerator/Config/LUFAConfig.h | 93 - .../Projects/MIDIToneGenerator/Descriptors.c | 314 -- .../Projects/MIDIToneGenerator/Descriptors.h | 110 - .../Projects/MIDIToneGenerator/MIDIToneGenerator.c | 252 -- .../Projects/MIDIToneGenerator/MIDIToneGenerator.h | 105 - .../MIDIToneGenerator/MIDIToneGenerator.txt | 73 - .../LUFA-git/Projects/MIDIToneGenerator/asf.xml | 50 - .../LUFA-git/Projects/MIDIToneGenerator/doxyfile | 2364 ----------- .../LUFA-git/Projects/MIDIToneGenerator/makefile | 38 - .../LUFA-git/Projects/Magstripe/Config/AppConfig.h | 58 - .../Projects/Magstripe/Config/LUFAConfig.h | 93 - .../lufa/LUFA-git/Projects/Magstripe/Descriptors.c | 216 - .../lufa/LUFA-git/Projects/Magstripe/Descriptors.h | 96 - .../Projects/Magstripe/Lib/CircularBitBuffer.c | 115 - .../Projects/Magstripe/Lib/CircularBitBuffer.h | 97 - .../LUFA-git/Projects/Magstripe/Lib/MagstripeHW.h | 102 - .../lufa/LUFA-git/Projects/Magstripe/Magstripe.c | 228 -- .../lufa/LUFA-git/Projects/Magstripe/Magstripe.h | 90 - .../lufa/LUFA-git/Projects/Magstripe/Magstripe.txt | 163 - .../lufa/LUFA-git/Projects/Magstripe/asf.xml | 52 - .../lufa/LUFA-git/Projects/Magstripe/doxyfile | 2364 ----------- .../lufa/LUFA-git/Projects/Magstripe/makefile | 38 - .../Projects/MediaController/Config/LUFAConfig.h | 93 - .../Projects/MediaController/Descriptors.c | 234 -- .../Projects/MediaController/Descriptors.h | 93 - .../Projects/MediaController/MediaController.c | 184 - .../Projects/MediaController/MediaController.h | 110 - .../Projects/MediaController/MediaController.txt | 66 - .../lufa/LUFA-git/Projects/MediaController/asf.xml | 50 - .../LUFA-git/Projects/MediaController/doxyfile | 2364 ----------- .../LUFA-git/Projects/MediaController/makefile | 38 - .../Projects/MissileLauncher/Config/LUFAConfig.h | 93 - .../Projects/MissileLauncher/ConfigDescriptor.c | 185 - .../Projects/MissileLauncher/ConfigDescriptor.h | 72 - .../Projects/MissileLauncher/MissileLauncher.c | 323 -- .../Projects/MissileLauncher/MissileLauncher.h | 92 - .../Projects/MissileLauncher/MissileLauncher.txt | 60 - .../lufa/LUFA-git/Projects/MissileLauncher/asf.xml | 49 - .../LUFA-git/Projects/MissileLauncher/doxyfile | 2364 ----------- .../LUFA-git/Projects/MissileLauncher/makefile | 38 - .../Projects/RelayBoard/Config/LUFAConfig.h | 93 - .../LUFA-git/Projects/RelayBoard/Descriptors.c | 188 - .../LUFA-git/Projects/RelayBoard/Descriptors.h | 84 - .../lufa/LUFA-git/Projects/RelayBoard/RelayBoard.c | 145 - .../lufa/LUFA-git/Projects/RelayBoard/RelayBoard.h | 65 - .../LUFA-git/Projects/RelayBoard/RelayBoard.txt | 106 - .../lufa/LUFA-git/Projects/RelayBoard/asf.xml | 47 - .../lufa/LUFA-git/Projects/RelayBoard/doxyfile | 2364 ----------- .../lufa/LUFA-git/Projects/RelayBoard/makefile | 38 - .../Projects/SerialToLCD/Config/LUFAConfig.h | 93 - .../LUFA-git/Projects/SerialToLCD/Descriptors.c | 257 -- .../LUFA-git/Projects/SerialToLCD/Descriptors.h | 111 - .../LUFA-git/Projects/SerialToLCD/Lib/HD44780.c | 127 - .../LUFA-git/Projects/SerialToLCD/Lib/HD44780.h | 64 - .../LUFA-git/Projects/SerialToLCD/SerialToLCD.c | 170 - .../LUFA-git/Projects/SerialToLCD/SerialToLCD.h | 64 - .../LUFA-git/Projects/SerialToLCD/SerialToLCD.txt | 109 - .../lufa/LUFA-git/Projects/SerialToLCD/asf.xml | 50 - .../lufa/LUFA-git/Projects/SerialToLCD/doxyfile | 2364 ----------- .../lufa/LUFA-git/Projects/SerialToLCD/makefile | 38 - .../Projects/TempDataLogger/Config/AppConfig.h | 48 - .../Projects/TempDataLogger/Config/LUFAConfig.h | 93 - .../LUFA-git/Projects/TempDataLogger/Descriptors.c | 257 -- .../LUFA-git/Projects/TempDataLogger/Descriptors.h | 87 - .../Projects/TempDataLogger/Lib/DataflashManager.c | 534 --- .../Projects/TempDataLogger/Lib/DataflashManager.h | 86 - .../Projects/TempDataLogger/Lib/FATFs/00readme.txt | 135 - .../Projects/TempDataLogger/Lib/FATFs/diskio.c | 98 - .../Projects/TempDataLogger/Lib/FATFs/diskio.h | 55 - .../Projects/TempDataLogger/Lib/FATFs/ff.c | 4139 -------------------- .../Projects/TempDataLogger/Lib/FATFs/ff.h | 337 -- .../Projects/TempDataLogger/Lib/FATFs/ffconf.h | 191 - .../Projects/TempDataLogger/Lib/FATFs/integer.h | 38 - .../LUFA-git/Projects/TempDataLogger/Lib/RTC.c | 159 - .../LUFA-git/Projects/TempDataLogger/Lib/RTC.h | 126 - .../LUFA-git/Projects/TempDataLogger/Lib/SCSI.c | 344 -- .../LUFA-git/Projects/TempDataLogger/Lib/SCSI.h | 89 - .../Projects/TempDataLogger/TempDataLogger.c | 331 -- .../Projects/TempDataLogger/TempDataLogger.h | 112 - .../TempLogHostApp/COPYING.LESSER.txt | 166 - .../TempDataLogger/TempLogHostApp/COPYING.txt | 675 ---- .../TempLogHostApp/DataLoggerSettings.Designer.cs | 181 - .../TempLogHostApp/DataLoggerSettings.cs | 179 - .../TempLogHostApp/DataLoggerSettings.resx | 120 - .../TempDataLogger/TempLogHostApp/Hid.Linux.dll | Bin 9216 -> 0 bytes .../TempDataLogger/TempLogHostApp/Hid.Net.dll | Bin 24576 -> 0 bytes .../TempDataLogger/TempLogHostApp/Hid.Win32.dll | Bin 94208 -> 0 bytes .../TempDataLogger/TempLogHostApp/Program.cs | 21 - .../TempLogHostApp/Properties/AssemblyInfo.cs | 36 - .../Properties/Resources.Designer.cs | 63 - .../TempLogHostApp/Properties/Resources.resx | 117 - .../TempLogHostApp/Properties/Settings.Designer.cs | 26 - .../TempLogHostApp/Properties/Settings.settings | 7 - .../TempDataLogger/TempLogHostApp/README.txt | 24 - .../TempLogHostApp/TempLoggerHostApp.csproj | 99 - .../TempLogHostApp_Python/temp_log_config.py | 99 - .../TempDataLogger/TemperatureDataLogger.txt | 86 - .../lufa/LUFA-git/Projects/TempDataLogger/asf.xml | 72 - .../lufa/LUFA-git/Projects/TempDataLogger/doxyfile | 2366 ----------- .../lufa/LUFA-git/Projects/TempDataLogger/makefile | 39 - .../Projects/USBtoSerial/Config/LUFAConfig.h | 93 - .../LUFA-git/Projects/USBtoSerial/Descriptors.c | 245 -- .../LUFA-git/Projects/USBtoSerial/Descriptors.h | 110 - .../Projects/USBtoSerial/LUFA USBtoSerial.inf | 66 - .../LUFA-git/Projects/USBtoSerial/USBtoSerial.c | 254 -- .../LUFA-git/Projects/USBtoSerial/USBtoSerial.h | 77 - .../LUFA-git/Projects/USBtoSerial/USBtoSerial.txt | 78 - .../lufa/LUFA-git/Projects/USBtoSerial/asf.xml | 51 - .../lufa/LUFA-git/Projects/USBtoSerial/doxyfile | 2364 ----------- .../lufa/LUFA-git/Projects/USBtoSerial/makefile | 38 - .../LUFA-git/Projects/Webserver/Config/AppConfig.h | 73 - .../Projects/Webserver/Config/LUFAConfig.h | 93 - .../lufa/LUFA-git/Projects/Webserver/Descriptors.c | 295 -- .../lufa/LUFA-git/Projects/Webserver/Descriptors.h | 128 - .../Projects/Webserver/LUFA Webserver RNDIS.inf | 59 - .../Projects/Webserver/Lib/DHCPClientApp.c | 208 - .../Projects/Webserver/Lib/DHCPClientApp.h | 69 - .../LUFA-git/Projects/Webserver/Lib/DHCPCommon.c | 103 - .../LUFA-git/Projects/Webserver/Lib/DHCPCommon.h | 159 - .../Projects/Webserver/Lib/DHCPServerApp.c | 265 -- .../Projects/Webserver/Lib/DHCPServerApp.h | 64 - .../Projects/Webserver/Lib/DataflashManager.c | 534 --- .../Projects/Webserver/Lib/DataflashManager.h | 87 - .../Projects/Webserver/Lib/FATFs/00readme.txt | 135 - .../LUFA-git/Projects/Webserver/Lib/FATFs/diskio.c | 65 - .../LUFA-git/Projects/Webserver/Lib/FATFs/diskio.h | 52 - .../LUFA-git/Projects/Webserver/Lib/FATFs/ff.c | 4139 -------------------- .../LUFA-git/Projects/Webserver/Lib/FATFs/ff.h | 337 -- .../LUFA-git/Projects/Webserver/Lib/FATFs/ffconf.h | 190 - .../Projects/Webserver/Lib/FATFs/integer.h | 38 - .../Projects/Webserver/Lib/HTTPServerApp.c | 284 -- .../Projects/Webserver/Lib/HTTPServerApp.h | 84 - .../lufa/LUFA-git/Projects/Webserver/Lib/SCSI.c | 344 -- .../lufa/LUFA-git/Projects/Webserver/Lib/SCSI.h | 87 - .../Projects/Webserver/Lib/TELNETServerApp.c | 163 - .../Projects/Webserver/Lib/TELNETServerApp.h | 71 - .../Projects/Webserver/Lib/uIPManagement.c | 298 -- .../Projects/Webserver/Lib/uIPManagement.h | 69 - .../LUFA-git/Projects/Webserver/Lib/uip/clock.c | 37 - .../LUFA-git/Projects/Webserver/Lib/uip/clock.h | 13 - .../LUFA-git/Projects/Webserver/Lib/uip/timer.c | 128 - .../LUFA-git/Projects/Webserver/Lib/uip/timer.h | 87 - .../Projects/Webserver/Lib/uip/uip-split.c | 151 - .../Projects/Webserver/Lib/uip/uip-split.h | 104 - .../lufa/LUFA-git/Projects/Webserver/Lib/uip/uip.c | 1941 --------- .../lufa/LUFA-git/Projects/Webserver/Lib/uip/uip.h | 2130 ---------- .../LUFA-git/Projects/Webserver/Lib/uip/uip_arp.c | 432 -- .../LUFA-git/Projects/Webserver/Lib/uip/uip_arp.h | 146 - .../LUFA-git/Projects/Webserver/Lib/uip/uipopt.h | 740 ---- .../LUFA-git/Projects/Webserver/USBDeviceMode.c | 162 - .../LUFA-git/Projects/Webserver/USBDeviceMode.h | 62 - .../lufa/LUFA-git/Projects/Webserver/USBHostMode.c | 172 - .../lufa/LUFA-git/Projects/Webserver/USBHostMode.h | 60 - .../lufa/LUFA-git/Projects/Webserver/Webserver.c | 77 - .../lufa/LUFA-git/Projects/Webserver/Webserver.h | 76 - .../lufa/LUFA-git/Projects/Webserver/Webserver.txt | 126 - .../lufa/LUFA-git/Projects/Webserver/asf.xml | 96 - .../lufa/LUFA-git/Projects/Webserver/doxyfile | 2365 ----------- .../lufa/LUFA-git/Projects/Webserver/makefile | 41 - .../Projects/XPLAINBridge/Config/AppConfig.h | 66 - .../Projects/XPLAINBridge/Config/LUFAConfig.h | 93 - .../Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf | 66 - .../LUFA-git/Projects/XPLAINBridge/Lib/SoftUART.c | 156 - .../LUFA-git/Projects/XPLAINBridge/Lib/SoftUART.h | 71 - .../Projects/XPLAINBridge/USARTDescriptors.c | 245 -- .../Projects/XPLAINBridge/USARTDescriptors.h | 112 - .../LUFA-git/Projects/XPLAINBridge/XPLAINBridge.c | 294 -- .../LUFA-git/Projects/XPLAINBridge/XPLAINBridge.h | 104 - .../Projects/XPLAINBridge/XPLAINBridge.txt | 109 - .../lufa/LUFA-git/Projects/XPLAINBridge/asf.xml | 57 - .../lufa/LUFA-git/Projects/XPLAINBridge/doxyfile | 2364 ----------- .../lufa/LUFA-git/Projects/XPLAINBridge/makefile | 51 - tmk_core/protocol/lufa/LUFA-git/Projects/makefile | 47 - tmk_core/protocol/lufa/lufa.h | 2 +- tmk_core/protocol/lufa/midi/Config/LUFAConfig.h | 93 - tmk_core/protocol/lufa/midi/bytequeue/COPYING | 674 ---- tmk_core/protocol/lufa/midi/bytequeue/bytequeue.c | 65 - tmk_core/protocol/lufa/midi/bytequeue/bytequeue.h | 59 - .../lufa/midi/bytequeue/interrupt_setting.c | 36 - .../lufa/midi/bytequeue/interrupt_setting.h | 39 - tmk_core/protocol/lufa/midi/midi.c | 277 -- tmk_core/protocol/lufa/midi/midi.h | 498 --- tmk_core/protocol/lufa/midi/midi_device.c | 291 -- tmk_core/protocol/lufa/midi/midi_device.h | 156 - tmk_core/protocol/lufa/midi/midi_function_types.h | 50 - tmk_core/protocol/lufa/midi/sysex_tools.c | 99 - tmk_core/protocol/lufa/midi/sysex_tools.h | 95 - 907 files changed, 1 insertion(+)