| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Add Binary Page Mode fuse command bytes to the AT45DB642D.h Dataflash header.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
correct detection of an attached Android Accessory Mode device.
|
| |
|
| |
|
|
|
|
| |
they contain the USB mode (Device or Host) in the function names.
|
| |
|
|
|
|
| |
Added new EVENT_Audio_StreamStartStopChange() event to the Audio Device Class driver to detect stream start/stop events.
|
|
|
|
| |
sample frequency support.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
manipulations such as data sample rates.
Modified the Class Driver AudioInput and AudioOutput demos to support multiple sample rates.
Fixed KeyboardHost and KeyboardHostWithParser demos displaying incorrect values when numerical keys were pressed.
Fix broken LowLevel audio demo descriptors.
Minor documentation fixes.
|
| |
|
|
|
|
|
|
|
|
| |
ATMEGA8U2.
Minor documentation cleanups.
Modify the incomplete AudioInputHost demo for mono audio output.
|
|
|
|
|
|
| |
Added missing Audio class control request definitions.
Added support for the Audio class GET STATUS request so that it is correctly ACKed when sent by the host.
|
| |
|
|
|
|
| |
on the device can be viewed from a web-browser while the board is plugged into a host machine.
|
|
|
|
|
|
|
|
| |
descriptor lengths are supplied by the attached device.
Minor code cleanups to add const and reformat where missing, as well as abstract out the internal device signature start address into a macro, so that it can be altered to suit particular devices within a single architecture if needed.
Add missing documentation to the USB_Device_States_t enum.
|
| |
|
|
|
|
| |
masks (thanks to Omar).
|
|
|
|
| |
Configuration Descriptor's header does not contain the full length of the descriptor, breaking full enumeration.
|
| |
|
|
|
|
| |
documentation, alter USBMode.h preprocessor logic to support future architectures more easily.
|
| |
|
|
|
|
|
|
| |
Fixed ReportID not being removed from the feature/out report data array in the HID class driver when Report IDs are used.
Added new MAX() and MIN() convenience macros.
|
|
|
|
|
|
|
|
| |
and editing of HID report descriptors.
Changed over all project and demo HID report descriptors to use the new HID report item macros.
Moved the HIDParser.c source file to the LUFA/Drivers/USB/Class/Common/ directory from the LUFA/Drivers/USB/Class/Host/.
|
|
|
|
|
|
|
|
| |
per-application LightweightRingBuff.h ring buffers. Change over projects to use the new driver.
Add ORDERED_EP_CONFIG to the device Projects (only) that use only a single class driver, or where the endpoint ordering is fixed, to save on compiled binary size.
Added new GCC_FORCE_POINTER_ACCESS() macro to correct GCC's mishandling of struct pointers.
|
|
|
|
| |
programming specific patterns into a target memory space that is only byte (not page) addressable.
|
|
|
|
| |
ORDERED_EP_CONFIG compile time option to override the workaround and use the previous behaviour that imposes correct Endpoint/Pipe ordering but produces smaller compiled code.
|
| |
|
|
|
|
| |
XPROGTarget_SendIdle(), as it is sending idle bits and not break bits.
|
| |
|
| |
|
|
|
|
| |
tool made by Laszlo Monda
|
| |
|
|
|
|
| |
values once a compatible interface has been found within the device.
|
|
|
|
|
|
| |
mode class drivers.
Fix typo in MIDI low level device demo.
|
|
|
|
|
|
|
|
|
|
| |
on the configuration order instead to ensure maximum reliability.
Altered all low level device and host mode demos to ensure that endpoints and pipes are configured in ascending order properly.
Rewrote all low level host mode demos' configuration descriptor parser code to ensure that pipes are enumerated in ascending order, and to ensure maximum compatibility with devices.
Incremented all device mode demo's device descriptor revision numbers to ensure that any descriptor changes are re-fetched on machines which have enumerated previous versions.
|
|
|
|
|
|
|
|
| |
make them more managable.
Add new CDC descriptor structs to the CDC class driver, so that the CDC demos can use human readable field names.
Rename prefix for Still Image Host class driver functions from "SImage_" to "SI_" to remain consistent with the rest of the driver.
|
|
|
|
|
|
|
|
| |
address, as per datasheet.
Minor documentation fixes.
Fix broken USB host mode due to the USB frame counter not being updated during the early enumeration steps, causing USB_Host_DelayMS() to spinloop forever.
|
| |
|
| |
|
|
|
|
| |
naming.
|
| |
|
|
|
|
|
|
| |
across all demos/projects/bootloaders.
Added start of the Incomplete TMC demo's command parser code.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
of eeprom_write_byte(), so that only changed bytes are written to EEPROM to preserve its lifespan.
Changed over the AVRISP-MKII and TemperatureDataLogger projects to use eeprom_update_byte() when writing non-volatile parameters to EEPROM to preserve its lifespan.
|