| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
structs which are then combined, for clarity. Move device mode class driver interfaces back into the device mode class driver headers from the common class headers to make room for host class interfaces.
|
|
|
|
| |
Better documentation for the MissleLauncher project - add credit to PyLauncher project.
|
|
|
|
|
|
| |
underflow errors.
Change MIDI demos to use real MIDI command values, and shift for the USB wrapper, rather than shift for the MIDI bytes. This is a little confusing for the MIDI USB wrapper, but allows for the use of real standardized MIDI command values.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Split out common defines/types from class drivers into a seperate common class driver directory.
Make central USB Class driver dispatch headers, used for both device and host modes.
|
|
|
|
|
|
| |
for better device control.
Fixed error in Endpoint.c using HSOFI rather than SOFI for counting elapsed milliseconds.
|
|
|
|
| |
for similar host mode Class drivers.
|
| |
|
|
|
|
| |
read-in events from the host, use standard MIDI event structure in low level demo rather than sending individual bytes.
|
|
|
|
| |
MIDI device demo no longer blocks if a note change event is sent while the endpoint is not ready.
|
| |
|
|
|
|
| |
Copy and convert incomplete Bluetooth Host demo to the library.
|
| |
|
|
|
|
| |
incomplete SideShow demo.
|
|
|
|
| |
Fix makefiles of ClassDriver device demos.
|
|
|
|
| |
re-add old low level demos to a LowLevel subdirectory.
|
|
|
|
| |
endpoint support from HID driver (all OUT reports are now processed through control requests) as a seperate endpoint had issues with determining the exact output report length.
|
| |
|
|
|
|
| |
their interface for consistency.
|
|
|
|
|
|
|
|
| |
Redocumented all device demos, now that they have changed over to the new USB class drivers.
Added C linkage to class drivers for C++ support.
Added prefixes to most of the class driver constants to prevent name clashes.
|
|
|
|
|
|
| |
too much and it was only useful in one of the standard classes (HID). Altered HID demos to use the previous method of tracking millisecond periods via a hardware timer rather than the SOF events.
Fixed MIDI class driver blocking on unread events to the host.
|
|
|
|
| |
driver. All device demos/projects have now been converted to the new library class drivers, although documentation is yet to be completed.
|
|
|
|
|
|
|
|
|
|
| |
MIDI demo - not documented yet.
Removed scheduler and memory allocation libraries.
Added new EVENT_USB_StartOfFrame event in the library to indicate the start of each USB frame (when generated).
Removed Tx interrupt from the USBtoSerial demo; now sends characters via polling to ensure more time for the Rx interrupt.
|
|
|
|
| |
Change USBtoSerial Tx to polling-driven rather than interrupt driven, to ensure more time for the Rx interrupt to be serviced.
|
|
|
|
| |
to /Lib directories for a better directory structure.
|
|
|
|
| |
CALLBACK_USB_GetDescriptor, moved ConfigDescriptor.c/.h from the LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs.
|
|
|
|
| |
Phill).
|
|
|
|
|
|
|
|
| |
Fixed incorrect ENDPOINT_EPNUM_MASK mask preventing endpoints above EP3 from being selected (thanks to Jonathan Oakley).
Removed STREAM_CALLBACK() macro - callbacks now use regular function definitions to clarify user code.
Removed DESCRIPTOR_COMPARATOR() macro - comparators should now use regular function definitions to clarify user code.
|
|
|
|
| |
served to obfuscate code.
|
|
|
|
| |
endpoints mask when a partially enumerated invalid CDC interface is skipped.
|
|
|
|
| |
support for interrupt driven control endpoints when in device mode by defining INTERRUPT_CONTROL_ENDPOINT token and passing it to the compiler via the -D switch.
|
|
|
|
| |
it more properly belongs.
|
|
|
|
|
|
| |
specification for idle periods (thanks to Brian Dickman).
Removed support for endpoint/pipe non-control interrupts; these did not act in the way users expected, and had many subtle issues.
|
|
|
|
| |
"optional" request which was unhandled.
|
|
|
|
|
|
| |
USB_ControlRequest structure for control request data.
Fixed documentation showing incorrect USB mode support on the supported AVRs list.
|
|
|
|
|
|
| |
stage clearing).
Commit for the 090510 release.
|
|
|
|
| |
the HID class demos to TotalReportDescriptors, to be more accurate of the element's function (thanks to Brian Dickman).
|
|
|
|
| |
systems).
|
|
|
|
| |
the board joystick to maintain consistency.
|
|
|
|
| |
future boards with more than one mounted GPIO button.
|
|
|
|
|
|
| |
problems with faulty devices which do not respect the given wLength value when reading in the device descriptor.
Further documentation improvements - removed file view from the main library documentation, replaced file references in the documentation with group references.
|
| |
|
|
|
|
|
|
| |
Fixed PREVENT ALLOW MEDIUM REMOVAL command issuing in the MassStorageHost demo using incorrect parameters (thanks to Mike Alex).
Fixed MassStorageHost demo broken due to an incorrect if statement test in MassStore_GetReturnedStatus().
|
|
|
|
| |
configurations have static inputs - removed the now useless STATIC_ENDPOINT_CONFIGURATION compile time token.
|
|
|
|
|
|
| |
Feature request was not being handled).
Renamed the FEATURELESS_CONTROL_ONLY_DEVICE compile-time token to CONTROL_ONLY_DEVICE.
|
| |
|
|
|
|
| |
Device mode demos to reduce binary size.
|
|
|
|
|
|
|
|
| |
is now read into USB_ControlRequest in Device mode rather than having the library pass only partially read header data to the application.
The USB_UnhandledControlPacket event has had its parameters removed, in favour of accessing the new USB_ControlRequest structure.
The Endpoint control stream functions now correctly send a ZLP to the host when less data than requested is sent.
|