aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Drivers/USB/HighLevel/Template
AgeCommit message (Collapse)Author
2011-02-19Initial restructuring of the core USB driver module to support multiple ↵Dean
architectures in the future. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1672 d5102386-fcda-11dd-9fdb-3debd5008f28
2011-02-13Add more const-ness to the stream endpoint/pipe functions where possible.Dean
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1664 d5102386-fcda-11dd-9fdb-3debd5008f28
2011-01-10Call USB_USBTask() in the Endpoint stream functions between packets if ↵Dean
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. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1629 d5102386-fcda-11dd-9fdb-3debd5008f28
2011-01-10Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵Dean
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). git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1628 d5102386-fcda-11dd-9fdb-3debd5008f28
2011-01-08The FAST_STREAM_TRANSFERS compile time option has been removed due to lack ↵Dean
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. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1625 d5102386-fcda-11dd-9fdb-3debd5008f28
2010-10-13Clean up excessive whitespace at the end of each line using the wspurify ↵Dean
tool made by Laszlo Monda git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1524 d5102386-fcda-11dd-9fdb-3debd5008f28
2010-10-06Cache the USB_DeviceState variable internally in the library core when ↵Dean
multiple checks are required in a single loop iteration, to reduce compiled code size. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1513 d5102386-fcda-11dd-9fdb-3debd5008f28
2010-09-13Fixed SET FEATURE and CLEAR FEATURE control requests directed at an ↵Dean
unconfigured endpoint causing request timeouts. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1476 d5102386-fcda-11dd-9fdb-3debd5008f28
2010-08-22Split out endpoint and pipe stream functions into new EndpointStream.c/.h ↵Dean
and PipeStream.c/.h files. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1449 d5102386-fcda-11dd-9fdb-3debd5008f28