Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add HCI debugging with verbosity control to the BluetoothHost demo. | Dean Camera | 2010-04-11 | 6 | -29/+134 |
| | | | | Add Link Key Request event processing so that paired devices always re-authenticate until appropriate link key store/retrieve callbacks are implemented. | ||||
* | Fix up Bluetooth Demo's options processing on incoming channel configuration ↵ | Dean Camera | 2010-04-11 | 2 | -22/+23 |
| | | | | requests. | ||||
* | Add LUFA-side channel open/close routines, add signalling handlers for the ↵ | Dean Camera | 2010-04-10 | 4 | -41/+163 |
| | | | | creation and configuration of channels from the local device to the remote device, to add to the existing remote to local channel capabilities. | ||||
* | Bluetooth demo can now create and maintain logical channels - need to ↵ | Dean Camera | 2010-04-10 | 4 | -35/+85 |
| | | | | determine why Windows machines refuse to connect. | ||||
* | Make Bluetooth signalling handler routines use the generic ↵ | Dean Camera | 2010-04-06 | 4 | -269/+188 |
| | | | | Bluetooth_SendPacket() routine for their responses. Use a better method of controlling the debug output verbosity. | ||||
* | Add bidirectional channel configuration -- remote device is not ACKing sent ↵ | Dean Camera | 2010-04-06 | 7 | -206/+310 |
| | | | | | | Configuration Requests, needs further debugging. Implement Bluetooth spec's channel states. Use abbreviations for the structure and function names where possible to try to cut down on the code verbosity. | ||||
* | Add packet reception and send routines to the ACL layer of the incomplete ↵ | Dean Camera | 2010-04-06 | 5 | -17/+68 |
| | | | | Bluetooth Host demo. | ||||
* | Add information request/response signal handler to the Bluetooth Host demo. | Dean Camera | 2010-04-06 | 2 | -45/+155 |
| | | | | Ensure that the AVRISP-MKII project's Windows avrdude compatibility define is named properly in all parts of the code. | ||||
* | Add Bluetooth signalling echo request/response handlers, disconnection ↵ | Dean Camera | 2010-04-05 | 7 | -83/+198 |
| | | | | | | | | request/response handlers. Add Bluetooth connection request/complete/disconnection callbacks. Remove debugging from HCI layer, as it is now operational -- add guards to ACL debug statements to reduce logging chattyness so that the overall command sequences can be observed and debugged. | ||||
* | Add user callback function to the Bluetooth host demo to filter out ↵ | Dean Camera | 2010-04-05 | 5 | -22/+31 |
| | | | | | | | | connections from remote devices. Add in ability to reject connections based on their bluetooth device address. Clean up RelayBoard project code. Make AVRISP project clear the XMEGA target's reset register twice; this does not appear to take affect properly the first time under some circumstances. | ||||
* | More improvements to the incomplete BluetoothHost demo - add Disconnection ↵ | Dean Camera | 2010-04-01 | 23 | -184/+229 |
| | | | | | | Event processing. Remove unused macro in the host mode demos for the maximum Configuration Descriptor size. | ||||
* | Massive cleanups to the incomplete BluetoothHost demo, to make the HCL layer ↵ | Dean Camera | 2010-03-31 | 5 | -257/+142 |
| | | | | code much easier to read, block less and work correctly. | ||||
* | Add briefs for the library core structures. | Dean Camera | 2010-03-29 | 1 | -1/+1 |
| | |||||
* | Add file-level brief documentation. | Dean Camera | 2010-03-29 | 1 | -5/+5 |
| | | | | Remove accidentally duplicated model-specific peripheral driver files. | ||||
* | Add new LUFA logo by Ryo Yamauchi. | Dean Camera | 2010-03-25 | 1 | -4/+5 |
| | |||||
* | All Class Driver Host mode demos now correctly set the board LEDs to READY ↵ | Dean Camera | 2010-03-25 | 12 | -8/+12 |
| | | | | | | once the enumeration process has completed. Fixed Still Image Host class driver not resetting the transaction ID when a new session is opened, fixed driver not sending a valid session ID to the device. | ||||
* | Fixed compilation error in the AudioInput demos when ↵ | Dean Camera | 2010-03-24 | 2 | -2/+2 |
| | | | | | | | | MICROPHONE_BIASED_TO_HALF_RAIL is defined (thanks to C. Scott Ananian). Minor documentation cleanups. Make sure HID class driver uses properly cast pointers when writing to the report buffer. | ||||
* | Added incomplete MIDIToneGenerator project. | Dean Camera | 2010-03-23 | 2 | -2/+1 |
| | |||||
* | Standardized the naming scheme given to configuration descriptor ↵ | Dean Camera | 2010-03-22 | 58 | -296/+301 |
| | | | | | | sub-elements in the Device mode demos, bootloaders and projects. Fix errors in the MouseHostWithParser demo from incorrect use of the HID_ALIGN_DATA() macro. | ||||
* | Fixed LowLevel MassStorage demo broken on the U2 AVRs due to double-banked ↵ | Dean Camera | 2010-03-19 | 2 | -7/+7 |
| | | | | endpoints. | ||||
* | Remove redundant check in the software PDI programming code of the AVRISP ↵ | Dean Camera | 2010-03-17 | 1 | -1/+1 |
| | | | | project. | ||||
* | Software PDI mode breaks unless the software USART has 100 cycles between bits. | Dean Camera | 2010-03-17 | 1 | -2/+2 |
| | |||||
* | Fixed PDI programming mode in the AVRISP programmer project not exiting ↵ | Dean Camera | 2010-03-16 | 2 | -6/+6 |
| | | | | | | programming mode correctly (clear target Reset key twice, set /RESET pin to pullup). Add newlines to the MIDI event printf() statements in the MIDI host demos. | ||||
* | Make sure the button report set masks use OR in all circumstances, to ↵ | Dean Camera | 2010-02-16 | 4 | -4/+4 |
| | | | | prevent user confusion. While the first set of the buttons report item can be a direct assignment, it is not immediately clear to new developers why this is the case. | ||||
* | Fixed USB_GetHIDReportSize() returning the number of bits in the specified ↵ | Dean Camera | 2010-02-09 | 3 | -37/+15 |
| | | | | | | | | report instead of bytes. Moved the USB_GetHIDReportItemInfo() calls into the main report item passing loop in the *HostWithParser demos - it is fast enough not to effect performance, and avoids duplicate code. Make Webserver project report the LUFA version as part of the HTTP header. | ||||
* | Fix LowLevel Keyboard demo -- accidentally trying to dereference a uint8_t ↵ | Dean Camera | 2010-02-08 | 1 | -3/+3 |
| | | | | type in ProcessLEDReport(). | ||||
* | Fix AVRISP-MKII clone project's TPI Chip Erase command processing - ensure ↵ | Dean Camera | 2010-02-08 | 2 | -2/+0 |
| | | | | | | erase location is the high byte in the given address space, check NVMBUSY for completion rather than the NVM Bus Enable bit. Change If-Else chains over to switch statements in XPROGProtocol.c for clarity. | ||||
* | Split out LED report processing from the host into a seperate routine in the ↵ | Dean Camera | 2010-02-07 | 2 | -30/+27 |
| | | | | LowLevel KeyboardMouse device demo, to avoid duplicate code. | ||||
* | Added Keyboard LED report masks (KEYBOARD_LED_*) to the HID class driver and ↵ | Dean Camera | 2010-02-07 | 7 | -18/+42 |
| | | | | demos. | ||||
* | Added keyboard modifier masks (HID_KEYBOARD_MODIFER_*) to the HID class ↵ | Dean Camera | 2010-02-07 | 8 | -32/+92 |
| | | | | driver and Keyboard demos. | ||||
* | New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵ | Dean Camera | 2010-02-04 | 58 | -62/+62 |
| | | | | | | will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Spell-check code/comments in the Webserver/AVRISP-MKII projects. | ||||
* | Exlude the "INCLUDE_FROM_*" macros from the individual project's documentation. | Dean Camera | 2010-02-03 | 50 | -50/+100 |
| | |||||
* | Minor fixups to the documentation and preprocessor tokens. | Dean Camera | 2010-02-02 | 3 | -6/+6 |
| | |||||
* | Update driver INF files - change manufacturer name from the original ↵ | Dean Camera | 2010-01-29 | 5 | -5/+5 |
| | | | | template's name to the Four Walled Cubicle website. | ||||
* | Removed the stream example code from the Low Level VirtualSerial demos, as ↵ | Dean Camera | 2010-01-28 | 2 | -99/+0 |
| | | | | they were buggy and only served to add clutter. | ||||
* | Fix up project documentation files' overview tables, so that multiple items ↵ | Dean Camera | 2010-01-28 | 39 | -110/+157 |
| | | | | occupy multiple lines in the same cell, rather than multiple cells. | ||||
* | Add Webserver project Doxygen configuration file and overview document. | Dean Camera | 2010-01-25 | 50 | -50/+50 |
| | | | | Fix Doxygen configuration files' input file exclusion filters. | ||||
* | Fixed CDC and RNDIS host demos and class drivers - bidirectional endpoints ↵ | Dean Camera | 2010-01-25 | 3 | -23/+6 |
| | | | | should use two seperate pipes, not one half-duplex pipe. | ||||
* | Added explicit ADC channel masks for the standard set of ADC channels, as ↵ | Dean Camera | 2010-01-25 | 4 | -2/+8 |
| | | | | the single-ended channel MUX masks are not equal to the channel number on some AVR models. Changed demos to use the new channel masks when using the ADC driver. | ||||
* | Fix up the incomplete Webserver project so that it integrates with the uIP ↵ | Dean Camera | 2010-01-21 | 2 | -1/+7 |
| | | | | | | stack correctly. Add simple HTTP webserver as a placeholder until FatFS can be integrated. Begin to look into the RNDIS Host Class Driver, which seems to crash on test hardware after many packets have been received. | ||||
* | Changed XPLAINBridge project to be both a USB to USART bridge and a PDI ↵ | Dean Camera | 2010-01-19 | 1 | -2/+2 |
| | | | | programmer, based on the state of a mode select pin. | ||||
* | Fixed incorrect interface values in the VirtualSerialMouse and KeyboardMouse ↵ | Dean Camera | 2010-01-12 | 4 | -8/+8 |
| | | | | | | demo class driver structures. Added caveat information to the CDC device class driver. | ||||
* | Update Doxygen configuration files to the latest Doxygen version. | Dean Camera | 2010-01-06 | 50 | -31550/+35450 |
| | |||||
* | Added support to the MIDI Class drivers for packed data, where multiple MIDI ↵ | Dean Camera | 2010-01-05 | 4 | -2/+4 |
| | | | | events are packed into a single USB packet. Added new MIDI Class driver flush routines to override packing behaviour. | ||||
* | Fix MassStorageKeyboard demo USE_INTERNAL_SERIAL check being performed ↵ | Dean Camera | 2010-01-04 | 2 | -6/+14 |
| | | | | | | before the required library headers were included, causing a compilation error. Added notes to the class driver functions indicating which functions require what Device/Host state machine states to function. | ||||
* | Clean up MassStorageKeyboard demo. | Dean Camera | 2010-01-03 | 4 | -30/+17 |
| | |||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 288 | -579/+579 |
| | |||||
* | Fix TemperatureDataLogger - sample tick timer wasn't being initialized in ↵ | Dean Camera | 2009-12-30 | 2 | -16/+11 |
| | | | | the correct CTC mode. | ||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 279 | -1967/+1967 |
| | |||||
* | Test with -Wextra, fix library warnings due to unused function parameters. | Dean Camera | 2009-12-13 | 1 | -1/+1 |
| |