Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Documentation: Update copyrights to 2019. | Dean Camera | 2019-01-08 | 1 | -2/+2 |
| | |||||
* | Update copyrights for 2018. | Dean Camera | 2018-01-04 | 1 | -2/+2 |
| | |||||
* | Update copyrights for 2017. | Dean Camera | 2017-04-18 | 1 | -2/+2 |
| | |||||
* | Update copyrights to 2016. | Dean Camera | 2016-01-31 | 1 | -2/+2 |
| | |||||
* | Update copyrights to 2015 (better late than never). | Dean Camera | 2015-05-17 | 1 | -2/+2 |
| | |||||
* | Update copyrights for 2014. | Dean Camera | 2014-01-04 | 1 | -2/+2 |
| | |||||
* | Pseudo-port the host mode demos for possible later multi-arch support. | Dean Camera | 2013-05-19 | 1 | -0/+2 |
| | |||||
* | Update copyright year to 2013. | Dean Camera | 2013-01-03 | 1 | -2/+2 |
| | |||||
* | Minor documentation improvements. | Dean Camera | 2012-10-05 | 1 | -1/+1 |
| | |||||
* | Use the framework provided GlobalInterruptEnable() function instead of the ↵ | Dean Camera | 2012-09-17 | 1 | -3/+3 |
| | | | | AVR8/XMEGA specific sei() macro, for future demo/project portability. | ||||
* | 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 |
| | |||||
* | Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵ | Dean Camera | 2011-12-23 | 1 | -1/+1 |
| | | | | trailing whitespace at the end of each line. | ||||
* | Updated all host mode demos and projects to use the ↵ | Dean Camera | 2011-07-08 | 1 | -108/+85 |
| | | | | | | | | | | | | | | EVENT_USB_Host_DeviceEnumerationComplete() event callback for device configuration instead of manual host state machine manipulations in the main application task. Added new USB_Host_ConfigurationNumber global variable to indicate the selected configuration in an attached device. Renamed global state variables that are specific to a certain USB mode to clearly indicate which mode the variable relates to, by changing the USB_* prefix to USB_Device_* or USB_Host_*. Removed the HOST_STATE_WaitForDeviceRemoval and HOST_STATE_Suspended host state machine states, as these are no longer required. Altered the USB_Host_SetDeviceConfiguration() function to update the new USB_Host_ConfigurationNumber global as required. Moved out the Host mode standard request convenience/helper functions from the architecture specific Host driver files to the architecture agnostic HostStandardReq.c driver file. | ||||
* | Add new USB_Host_SetInterfaceAltSetting() convenience function. | Dean Camera | 2011-05-27 | 1 | -10/+1 |
| | |||||
* | Renamed all driver termination *_ShutDown() functions to the more logical ↵ | Dean Camera | 2011-01-30 | 1 | -1/+1 |
| | | | | name *_Disable(). | ||||
* | 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 |
| | |||||
* | 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 | -20/+21 |
| | | | | tool made by Laszlo Monda | ||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 1 | -2/+3 |
| | | | | | | 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 | -251/+251 |
| | | | | 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 |
| | |||||
* | Use -pedantic compile time option to find and correct several minor code errors. | Dean Camera | 2009-12-13 | 1 | -5/+5 |
| | |||||
* | Application documentation/comment cleanup. | Dean Camera | 2009-10-08 | 1 | -1/+1 |
| | |||||
* | Fixed error in PrinterHost preventing the full page data from being sent to ↵ | Dean Camera | 2009-09-02 | 1 | -9/+6 |
| | | | | the attached device. | ||||
* | Make Endpoint control transfers more reliable; early-abort when an ↵ | Dean Camera | 2009-08-06 | 1 | -14/+14 |
| | | | | | | incomplete packet is sent from the host (indicating end of transfer), add check for control reads to ensure that no more than wLength bytes are read from the interface. Condense sequential printf_P/puts_P calls to single printf_P calls for size and clarity. | ||||
* | Renamed all library events to properly seperate out Device and Host mode ↵ | Dean Camera | 2009-08-05 | 1 | -5/+5 |
| | | | | | | | | 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 | -6/+3 |
| | | | | | | | | | | | | 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 | -1/+1 |
| | | | | 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. | ||||
* | Ensure control pipe is selected in the PrinterHost demo before trying to ↵ | Dean Camera | 2009-07-20 | 1 | -2/+1 |
| | | | | send control requests. | ||||
* | Added extra DoxyGen documentation to the new PrinterHost demo. | Dean Camera | 2009-07-20 | 1 | -5/+23 |
| | |||||
* | Add PrinterHost to the project file and Host LowLevel directory makefile. | Dean Camera | 2009-07-20 | 1 | -6/+8 |
| | |||||
* | Moved PrinterHost demo from Incomplete to LowLevel, as it is now near-complete. | Dean Camera | 2009-07-20 | 1 | -0/+237 |