Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | USB XMEGA support improvements; add DFLL clock platform support, ensure the ↵ | Dean Camera | 2011-10-07 | 1 | -2/+6 | |
| | | | | endpoint table is correctly aligned and configured in the USB controller. | |||||
* | Fix incorrect function call name in USB_Host_SendControlRequest() for AVR8 ↵ | Dean Camera | 2011-10-07 | 1 | -1/+1 | |
| | | | | devices. | |||||
* | Added endian-correction to the CDC driver's Line Encoding control request ↵ | Dean Camera | 2011-10-07 | 2 | -5/+13 | |
| | | | | handlers. | |||||
* | Fix compile errors for the USB XMEGA parts when the USB driver is used. | Dean Camera | 2011-10-04 | 2 | -6/+6 | |
| | | | | | | Add core support for the ATXMEGA64A1U. Minor documentation corrections. | |||||
* | Fix compile error on the UC3 targets when INTERRUPT_CONTROL_ENDPOINT compile ↵ | Dean Camera | 2011-09-28 | 2 | -1/+8 | |
| | | | | | | | | time option is used (thanks to Ian Woloschin). Small size improvement for Little Endian devices when USB host mode is used. Minor documentation fixes. | |||||
* | Add missing "used" attribute to ATTR_INIT_SECTION to ensure functions ↵ | Dean Camera | 2011-09-22 | 10 | -1/+23 | |
| | | | | | | declared with that meta-attribute are not discarded by the linker. Add missing function and definition documentation. | |||||
* | Fix missing C++ linkage command in ArchitectureSpecific.h. | Dean Camera | 2011-09-21 | 1 | -1/+1 | |
| | | | | Fix missing closing brace in an Endpoint function for the UC3 targets. | |||||
* | Fixed HID Parser's largest report size bit count not including the size of ↵ | Dean Camera | 2011-09-17 | 2 | -3/+2 | |
| | | | | | | the last parsed report item. Fixed HID host driver's largest HID report size count corrupt when the number of report bits exceeds 255. | |||||
* | Fixed optimization error in the HID Parser item value ↵ | Dean Camera | 2011-09-07 | 2 | -12/+14 | |
| | | | | | | USB_SetHIDReportItemInfo() and USB_GetHIDReportItemInfo() routines if the report item was NULL (which should be allowable according to the API). Fixed HID Parser CALLBACK_HIDParser_FilterHIDReportItem() callback function not being passed a cacheable report item pointer. | |||||
* | Oops - restore conditional calls to USB_USBTask() in the Mass Storage class ↵ | Dean Camera | 2011-09-05 | 1 | -0/+8 | |
| | | | | driver for the non-stream loops. | |||||
* | Move documentation for the USB_HOST_TIMEOUT_MS into the HostStandardReq ↵ | Dean Camera | 2011-08-28 | 4 | -23/+14 | |
| | | | | module where it is used. | |||||
* | Remove redundant prototype for Audio_Host_StartStopStreaming() and ↵ | Dean Camera | 2011-08-28 | 1 | -8/+6 | |
| | | | | Audio_Host_GetSetEndpointProperty(). Update host mode Audio class inline functions to prevent unused parameter warnings. | |||||
* | Renamed USB_Host_ClearPipeStall() to USB_Host_ClearEndpointStall() as the ↵ | Dean Camera | 2011-08-24 | 7 | -12/+26 | |
| | | | | | | | | | | function works on an endpoint address within the attached device, and not a Pipe within the host. Updated MS_Host_ResetMSInterface() to now perform a full Mass Storage reset sequence to prevent data corruption in the event of a device lock up or timeout (thanks to David Lyons). Add parenthesis around the library Endianness macros that do nothing on a particular architecture to prevent operator precedence issues depending on usage. Minor documentation corrections. | |||||
* | Minor documentation fixes. | Dean Camera | 2011-08-23 | 5 | -2/+11 | |
| | | | | Add extra parenthesis around terms in the common MIN() and MAX() macros to prevent issues with non-trivial macro inputs (thanks to David Lyons). | |||||
* | Add multiple axis support to the HID joystick report in the ↵ | Dean Camera | 2011-08-23 | 1 | -20/+22 | |
| | | | | HID_DESCRIPTOR_JOYSTICK() macro. | |||||
* | Remove redundant calls to USB_USBTask() in the Mass Storage Device Class ↵ | Dean Camera | 2011-07-29 | 3 | -25/+5 | |
| | | | | | | driver when INTERRUPT_CONTROL_ENDPOINT is not used, as this is done inside the stream callbacks. Fix implementations of Endpoint_SetEndpointDirection() and Endpoint_GetEndpointDirection() for the AVR8 architecture. | |||||
* | Add INTERRUPT_CONTROL_ENDPOINT compile time option support for the UC3 devices. | Dean Camera | 2011-07-25 | 2 | -6/+44 | |
| | ||||||
* | Fixed USB_USBTask not being called internally in stream transfers between ↵ | Dean Camera | 2011-07-25 | 3 | -12/+12 | |
| | | | | | | packets when Partial Stream Transfers are used. Remove old unused function prototype in the LowLevel MassStorage device demo. | |||||
* | Removed the ENDPOINT_DESCRIPTOR_DIR_* macros in favour of the shorter ↵ | Dean Camera | 2011-07-19 | 16 | -80/+40 | |
| | | | | ENDPOINT_DIR_* macros, which can now be used with both Endpoint_ConfigureEndpoint() and in the device descriptors. | |||||
* | Add support for the ORDERED_EP_CONFIG compile time token on the UC3 ↵ | Dean Camera | 2011-07-19 | 3 | -35/+90 | |
| | | | | architecture. | |||||
* | Move out the EP_TYPE_* macros to the base USBController.h header, as these ↵ | Dean Camera | 2011-07-19 | 4 | -81/+28 | |
| | | | | are used in the device descriptors as well and thus must not be changed. | |||||
* | More USB XMEGA porting for Endpoint control. | Dean Camera | 2011-07-18 | 3 | -54/+94 | |
| | ||||||
* | Add missing SVN eol-style property to files where it was missing. | Dean Camera | 2011-07-15 | 35 | -7472/+7472 | |
| | ||||||
* | Add option to the USB XMEGAs to set the USB bus interrupt priority level. | Dean Camera | 2011-07-15 | 2 | -5/+26 | |
| | ||||||
* | Complete USB XMEGA interrupt control subsystem code in the core USB driver. | Dean Camera | 2011-07-15 | 7 | -25/+158 | |
| | | | | | | Automatically load in the USB calibration bytes from the User Signature Row on start-up. Create internal SRAM variable for the endpoint control and status register table, used by the XMEGA USB controller hardware. | |||||
* | Complete initial revision of the XMEGA Clock Management platform driver. | Dean Camera | 2011-07-14 | 2 | -1/+6 | |
| | | | | Start the USB clock source generator inside USB_ResetInterface() for XMEGA devices. | |||||
* | Update UC3 platform driver support to use the bitmasks defined in the header ↵ | Dean Camera | 2011-07-14 | 1 | -4/+21 | |
| | | | | | | files over raw constants. Start implementation of XMEGA platform drivers. | |||||
* | More XMEGA USB AVR device port work - re-add missing Endpoint stream ↵ | Dean Camera | 2011-07-14 | 3 | -11/+69 | |
| | | | | functions, remove unnecessary internal functions. | |||||
* | Implementation of several key core USB driver functions for the new USB ↵ | Dean Camera | 2011-07-14 | 4 | -122/+124 | |
| | | | | XMEGA devices. | |||||
* | Correct the maximum banks per endpoint information macros for the UC3A3 and ↵ | Dean Camera | 2011-07-14 | 1 | -7/+7 | |
| | | | | UC3A4 devices. | |||||
* | Add support for triple endpoint/pipe bank AVR32 UC3 devices. | Dean Camera | 2011-07-14 | 3 | -2/+24 | |
| | ||||||
* | Add missing ENDPOINT_DETAILS_EP7 macro for the UC3A3/UC3A4 devices. | Dean Camera | 2011-07-14 | 1 | -1/+2 | |
| | | | | MultiArchDemos: Correct usage of updated INTC_RegisterGroupHandler() in the ported demos. | |||||
* | Added Device Qualifier standard descriptor structure definitions ↵ | Dean Camera | 2011-07-14 | 1 | -0/+47 | |
| | | | | USB_StdDescriptor_DeviceQualifier_t and USB_Descriptor_DeviceQualifier_t. | |||||
* | Add high speed USB support for the UC3 devices containing a high speed USB ↵ | Dean Camera | 2011-07-14 | 4 | -51/+83 | |
| | | | | | | controller. Add device support preprocessor checks and use symbolic bit names in the UC3 platform clock management driver. | |||||
* | Add start of an architecture port to the Atmel USB XMEGA devices. | Dean Camera | 2011-07-13 | 23 | -2/+2954 | |
| | ||||||
* | Remove unneeded #include of Device.h in StdDescriptors.h breaking ↵ | Dean Camera | 2011-07-13 | 1 | -4/+0 | |
| | | | | compilation for some user projects. | |||||
* | Minor documentation fixes. | Dean Camera | 2011-07-12 | 2 | -9/+9 | |
| | ||||||
* | Fixed error in the pipe unordered allocation algorithm for the AVR8 devices ↵ | Dean Camera | 2011-07-12 | 2 | -12/+4 | |
| | | | | breaking compatibility with some devices. | |||||
* | Add more missing function attributes to the TWI peripheral driver. | Dean Camera | 2011-07-12 | 1 | -1/+1 | |
| | | | | Fix incorrect standard request name in the host standard request driver. | |||||
* | Add missing function attributes. | Dean Camera | 2011-07-12 | 15 | -47/+79 | |
| | ||||||
* | Added new USB_Host_GetDeviceStatus() function for USB Host mode. | Dean Camera | 2011-07-12 | 2 | -10/+37 | |
| | ||||||
* | More endianness porting of the LUFA host mode class drivers. | Dean Camera | 2011-07-11 | 8 | -84/+84 | |
| | ||||||
* | More endianness porting of the LUFA device mode class drivers. | Dean Camera | 2011-07-11 | 12 | -139/+266 | |
| | | | | | | Add endianness information to the class driver and core structure definitions. Move out the unused Ethernet_Frame_Info_t structure definition to the RNDIS device demos where it is needed. | |||||
* | Minor documentation and style fixes. | Dean Camera | 2011-07-11 | 3 | -8/+8 | |
| | ||||||
* | Updated all host mode demos and projects to use the ↵ | Dean Camera | 2011-07-08 | 27 | -449/+301 | |
| | | | | | | | | | | | | | | 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. | |||||
* | Tighten up the implementations of the USB_Device_SetDeviceAddress(), ↵ | Dean Camera | 2011-07-06 | 4 | -61/+61 | |
| | | | | | | USB_Controller_Reset() and USB_PLL_On() functions for the AVR8 devices. Minor corrections to the documentation of the USB_Control_Request_t enum. | |||||
* | Fix HID_Host_SetIdlePeriod() function to send the correct request type to ↵ | Dean Camera | 2011-07-05 | 2 | -3/+3 | |
| | | | | the device, remove reference to unavailable (and not needed) local variable. | |||||
* | Add missing function parameter to the new HID_Host_SetIdlePeriod() function. | Dean Camera | 2011-07-04 | 1 | -1/+2 | |
| | ||||||
* | Add missing function parameter to the new HID_Host_SetIdlePeriod() function. | Dean Camera | 2011-07-04 | 2 | -2/+4 | |
| | ||||||
* | Added new HID_Host_SetIdlePeriod() function to the HID Host Class driver. | Dean Camera | 2011-07-04 | 2 | -0/+26 | |
| |