| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
can be extracted from the header after the address has been found.
|
| |
|
| |
|
|
|
|
| |
packet is a round multiple of the endpoint bank size under avrdude (thanks to Steffan Woltjer).
|
| |
|
|
|
|
| |
name *_Disable().
|
|
|
|
| |
Peripheral driver in the RNDISEthernetHost project.
|
|
|
|
|
|
| |
CDC_Device_SendString() functions to *_SendData(), and added new versions of the *_SendString() routines that expect a null terminated string instead.
Added new Serial_SendData() function to the Serial driver.
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
into the standard library Joystick HID report descriptor macro. Add in support for joystick resolution reporting via PHYSICAL_MINIMUM and PHYSICAL_MAXIMUM items.
|
|
|
|
|
|
|
|
|
|
|
|
| |
ClassDriver demos to use it.
Fix reversed byte ordering of multi-byte HID data.
Added support to the HID parser for extended USAGE items that contain the usage page as well as the usage index.
Removed the HID_IOF_NON_VOLATILE and HID_IOF_VOLATILE flags from HID INPUT items where the flag is invalid. Changed over HID OUTPUT items to use HID_IOF_NON_VOLATILE.
Change over MagStripe project to use HID_DESCRIPTOR_KEYBOARD() for its HID report. Change over MouseHostDevice demo to use HID_DESCRIPTOR_MOUSE() for its HID report.
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
HID_DESCRIPTOR_JOYSTICK macros for easy automatic creation of basic USB HID device reports.
|
|
|
|
| |
USAGE_MAXIMUM when describing the joystick buttons, to allow for easy extension of the number of supported buttons.
|
|
|
|
| |
timeouts, to reduce CPU usage and free timer 0 for other uses in the future.
|
|
|
|
|
|
| |
the HID class driver (thanks to Joby Taffey).
Add in newHID_KEYBOARD_SC_POWER keyboard scancode constant.
|
|
|
|
| |
data into the array from the HID macros automagically, by specifying the bit-width of the data, and the data itself as a single integer value of that width.
|
|
|
|
| |
an error code from the incorrect error code enum (thanks to Daniel Seibert).
|
| |
|
|
|
|
|
|
|
|
| |
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/.
|
| |
|
|
|
|
|
|
| |
the TWI_StartTransmission() function.
Spell check source code files.
|
|
|
|
| |
accounted for in the new unified DS1307 Time/Day read and write routines.
|
|
|
|
| |
interface and prevent a possible race condition.
|
| |
|
|
|
|
| |
INTERRUPT_CONTROL_ENDPOINT is not set. Remove calls to USB_USBTask in the Mass Storage class driver stream read/write continuation checks, since this is now done inside the stream function.
|
|
|
|
|
|
|
|
|
|
| |
parameter now points to a location where the number of bytes in the transfer that have been completed can be stored (or NULL if entire transaction should be performed in one chunk).
Added new Endpoint_Null_Stream() and Pipe_Null_stream() functions.
Removed the NO_STREAM_CALLBACKS compile time option due to the new partial stream transfer feature replacing it.
Fixed errors in the incomplete Test and Measurement device demo preventing proper operation (thanks to Pavel Plotnikov).
|
| |
|
| |
|
|
|
|
|
|
| |
of use and low cost/benefit ratio.
Add GCC_FORCE_POINTER_ACCESS() macro use to the RingBuffer library header, to attempt to force GCC into producing more efficient code for manipulating the buffers.
|
| |
|
|
|
|
| |
documentation to the latest version. Add missing data structure documentation briefs.
|
| |
|
|
|
|
| |
(thanks to WZab).
|
|
|
|
| |
RingBuffer_* so that it matches the header name.
|
| |
|
|
|
|
| |
Temperature drivers.
|
| |
|
|
|
|
| |
fix incorrect and missing section names.
|
|
|
|
| |
Made the USARTStream global public and documented in the SerialStream module, allowing for the serial USART stream to be accessed via its handle rather than via the implicit stdout and stdin streams.
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
project to reduce compiled size and increase maintainability of the code.
|
|
|
|
| |
programming specific patterns into a target memory space that is only byte (not page) addressable.
|
|
|
|
| |
unordered endpoints/pipes - only reconfigure the endpoints and pipes above the newly configured endpoint/pipe, and don't cache existing endpoint/pipe configuration before use to save SRAM.
|
|
|
|
| |
reduce the compiled binary size, as the endpoint initialization order is fixed in the code.
|
|
|
|
| |
reduce compiled binary size.
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
| |
DualVirtualSerial demo (thanks to Rick Drolet).
|