Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reintegrate the FullEPAddresses development branch into trunk. | Dean Camera | 2012-04-14 | 1 | -5/+3 |
| | |||||
* | Update file contributor copyrights for 2012. | Dean Camera | 2012-02-04 | 1 | -1/+1 |
| | |||||
* | Update file header copyrights for 2012. | Dean Camera | 2012-02-04 | 1 | -1/+1 |
| | |||||
* | Removed SerialStream module, rolled functionality into the base USART Serial ↵ | Dean Camera | 2011-01-30 | 1 | -1/+4 |
| | | | | | | | | peripheral driver instead through the new Serial_CreateStream() and Serial_CreateBlockingStream() methods. Renamed the Serial byte send/receive functions to remain consistent with the CDC driver's byte functions. Altered the serial byte receive function to make it non-blocking. | ||||
* | Update copyright year on all source files. | Dean Camera | 2011-01-01 | 1 | -2/+2 |
| | |||||
* | Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵ | Dean Camera | 2010-11-05 | 1 | -1/+1 |
| | | | | EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards. | ||||
* | Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵ | Dean Camera | 2010-10-28 | 1 | -1/+1 |
| | | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists. | ||||
* | Clean up excessive whitespace at the end of each line using the wspurify ↵ | Dean Camera | 2010-10-13 | 1 | -14/+15 |
| | | | | tool made by Laszlo Monda | ||||
* | Remove remaining void* descriptor casts in the projects and demos that were ↵ | Dean Camera | 2010-08-29 | 1 | -3/+4 |
| | | | | not removed when the GetDescriptor callback function's signature was altered. | ||||
* | Removed complicated logic for the Endpoint_ConfigureEndpoint() function to ↵ | Dean Camera | 2010-08-09 | 1 | -14/+8 |
| | | | | | | use inlined or function called versions depending of if the given bank size is a compile time constant, as the compiler does a better job of optimizing with basic code. Changed over all device demos to use a clearer algorithm for the configuring of the application's endpoints. | ||||
* | Ensure all demos now compile in C99 standards mode, and not GNU99 (C99 + GNU ↵ | Dean Camera | 2010-08-03 | 1 | -1/+1 |
| | | | | extensions). | ||||
* | Add TMC device capabilities to the incomplete TMC demo. | Dean Camera | 2010-07-23 | 1 | -1/+1 |
| | |||||
* | Added start of a low level device Test and Measurement class demo (thanks to ↵ | Dean Camera | 2010-07-22 | 1 | -1/+0 |
| | | | | Peter Lawrence). | ||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 1 | -6/+4 |
| | | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos. | ||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 1 | -158/+158 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | USB_Init() no longer calls sei() to enable global interrupts - this must now ↵ | Dean Camera | 2010-04-28 | 1 | -0/+1 |
| | | | | be done in the user application once all init code has run. | ||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 1 | -2/+2 |
| | |||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 1 | -7/+7 |
| | |||||
* | Minor code cleanups for clarity. | Dean Camera | 2009-11-11 | 1 | -2/+2 |
| | |||||
* | Spell check all source code variables, comments and strings. | Dean Camera | 2009-11-09 | 1 | -1/+1 |
| | |||||
* | Renamed all library events to properly seperate out Device and Host mode ↵ | Dean Camera | 2009-08-05 | 1 | -4/+4 |
| | | | | | | | | events. Changed the firing conditions for some events to ensure that events are fired by their own USB mode only. Remove VBUS events - not needed as the library takes care of VBUS detection and feedback on supported AVRs via the USB_Device_Connected and USB_Device_Disconnected events. Fixed incorrect Host state assignment in the incomplete BluetoothHost demo. | ||||
* | Added new USB_DeviceState variable to keep track of the current Device mode ↵ | Dean Camera | 2009-07-21 | 1 | -1/+1 |
| | | | | | | | | | | | | USB state. Added new Endpoint_ClearStatusStage() convenience function to assist with the status stages of control transfers. Removed vague USB_IsConnected global - test USB_DeviceState or USB_HostState explicitly to gain previous functionality. Removed USB_IsSuspended global - test USB_DeviceState against DEVICE_STATE_Suspended instead. Fixed possible enumeration errors from spinloops which may fail to exit if the USB connection is severed before the exit condition becomes true. | ||||
* | Add explicit guards to all device mode tasks to ensure the device is ↵ | Dean Camera | 2009-07-21 | 1 | -11/+11 |
| | | | | connected and configured before running the task, to prevent any user tasks from locking up the main USB task if the device has not been properly configured. | ||||
* | Added new EEPROM and FLASH buffer versions of the Endpoint and Pipe stream ↵ | Dean Camera | 2009-07-13 | 1 | -1/+1 |
| | | | | functions. Changed Endpoint.c and Pipe.c to use a templated system to build the seperate functions, rather than duplicating each function's code many times. | ||||
* | Conversion of old incomplete SideShow demo to new APIs. | Dean Camera | 2009-06-05 | 1 | -114/+50 |
| | |||||
* | Add new Incomplete device subdirectory for work-in-progress demos. Add ↵ | Dean Camera | 2009-06-05 | 1 | -0/+221 |
incomplete SideShow demo. |