aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/ManPages
Commit message (Collapse)AuthorAgeFilesLines
* Added board hardware driver support for the BUI development board.Dean Camera2010-09-142-8/+10
|
* Added board hardware driver support for the UDIP development board.Dean Camera2010-09-143-1/+2
|
* Fixed SET FEATURE and CLEAR FEATURE control requests directed at an ↵Dean Camera2010-09-131-0/+1
| | | | unconfigured endpoint causing request timeouts.
* Remove incomplete MIDIToneGenerator project.Dean Camera2010-09-131-1/+1
|
* Added PRNT_Host_SendByte() and PRNT_Host_Flush() functions to the Host mode ↵Dean Camera2010-09-111-1/+2
| | | | | | Printer Class driver. Modified PRNT_Host_USBTask() to flush the output pipe on each call.
* Added new project makefile template to the library and moved board driver ↵Dean Camera2010-09-112-1/+22
| | | | stub files into in a new CodeTemplates directory.
* Added class specific descriptor type defines with standard USB-IF element ↵Dean Camera2010-09-093-1/+5
| | | | naming.
* Added LEDs_ToggleLEDs() function to several board LED drivers which were ↵Dean Camera2010-09-092-1/+4
| | | | | | missing it (thanks to Andrei Krainev). Simplify some of the LED driver functions to produce more compact code.
* Added new PRNT_Host_BytesReceived() and PRNT_Host_ReceiveByte() functions to ↵Dean Camera2010-09-072-0/+5
| | | | the Print Host Class driver.
* Added new USB_Device_GetFrameNumber() and USB_Host_GetFrameNumber() ↵Dean Camera2010-09-051-0/+5
| | | | | | | | functions to retrieve the current USB frame number. Added new USB_Host_EnableSOFEvents(), USB_Host_DisableSOFEvents() and EVENT_USB_Host_StartOfFrame() for the user application handling of USB Start of Frame events while in USB Host mode. Changed over all demos, drivers and internal functions to use the current frame number over the Start of Frame flag where possible to free up the Start of Frame flag for interrupt use in the user application.
* Reduced HOST_DEVICE_SETTLE_DELAY_MS to 1000ms down from 1500ms to improve ↵Dean Camera2010-09-041-0/+1
| | | | device compatibility while in USB Host mode, as some devices will drop off the USB bus if no connection is made within a timeout period.
* Added board hardware driver support for the USBFOO development board.Dean Camera2010-09-043-1/+3
|
* Added board hardware driver support for the Olimex AVR-USB-162 development ↵Dean Camera2010-09-034-3/+9
| | | | board (thanks to Steve Fawcett).
* Fix incorrect ADC driver documentation for the parameters of ADC_Init(), fix ↵Dean Camera2010-08-311-0/+2
| | | | incorrect call to ADC_Init() in the TemperatureDatalogger project.
* Fix up documentation - remove obsolete Scheduler Overview page, roll ↵Dean Camera2010-08-293-37/+1
| | | | documentation into the documentation for the (deprecated) Simple Scheduler module.
* Add better description of the Ultra-Lightweight Ring Buffer header files.Dean Camera2010-08-291-0/+2
|
* Fixed LowLevel PrinterHost demo not sending control requests to the attached ↵Dean Camera2010-08-241-0/+1
| | | | printer with the correct printer interface wIndex value.
* Changed the signature of the CALLBACK_USB_GetDescriptor() callback function ↵Dean Camera2010-08-242-0/+7
| | | | so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).
* Split out endpoint and pipe stream functions into new EndpointStream.c/.h ↵Dean Camera2010-08-222-1/+7
| | | | and PipeStream.c/.h files.
* Changed all Device mode LowLevel demos and Device Class drivers so that the ↵Dean Camera2010-08-221-2/+3
| | | | control request is acknowledged and any data transferred as quickly as possible without any processing inbetween sections, so that long callbacks or event handlers will not break communications with the host by exceeding the maximum control request stage timeout period.
* Moved calls to Device mode Class Driver events to after the request has been ↵Dean Camera2010-08-221-0/+4
| | | | | | acknowledged, so that long event handlers do do skew the timing of the control requests. Fixed USBtoSerial and Benito project SetLineEncoding calls failing if the USART is busy, due to the RX ISR delaying the control request handler.
* Added compile time error to the AVRISP-MKII project when built for the U4 ↵Dean Camera2010-08-221-0/+2
| | | | chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco).
* Fixed critical pipe/endpoint memory allocation issue where the bank memory ↵Dean Camera2010-08-201-0/+2
| | | | address space could be silently overlapped in the USB controller if the endpoints or pipes were allocated in anything other than ascending order (thanks to Martin Degelsegger).
* Added new SCSI_ASENSE_NOT_READY_TO_READY_CHANGE constant to the Mass Storage ↵Dean Camera2010-08-201-0/+4
| | | | class driver, to indicate when a previously not ready removable medium has now become ready for the host's use (thanks to Martin Degelsegger)
* Fixed MassStorage based demos and projects resetting the SCSI sense values ↵Dean Camera2010-08-181-0/+4
| | | | | | before the command is executed, leading to missed SCSI sense values when the host retrieves the sense key (thanks to Martin Degelsegger). Added missing DataflashManager_CheckDataflashOperation() function to the MassStorageKeyboard demo, removed redundant SCSI_Codes.h file as these values are part of the MassStorage Class Driver.
* Fixed USB_GetHIDReportItemInfo() function modifying the given report item's ↵Dean Camera2010-08-101-0/+4
| | | | data when the report item does not exist within the supplied report of a multiple report HID device.
* Removed complicated logic for the Endpoint_ConfigureEndpoint() function to ↵Dean Camera2010-08-091-1/+5
| | | | | | use inlined or function called versions depending of if the given bank size is a compile time constant, as the compiler does a better job of optimizing with basic code. Changed over all device demos to use a clearer algorithm for the configuring of the application's endpoints.
* Add notification endpoint to the incomplete TMC demo.Dean Camera2010-08-092-0/+6
|
* Commit for the 100807 release.Dean Camera2010-08-092-2/+2
|
* Fixed software application start command broken in the DFU class bootloader ↵Dean Camera2010-08-051-0/+2
| | | | when dfu-programmer is used due to application start address corruption.
* Ensure all demos now compile in C99 standards mode, and not GNU99 (C99 + GNU ↵Dean Camera2010-08-031-0/+1
| | | | extensions).
* Fix XPLAINBridge project discarding characters from the USB interface due to ↵Dean Camera2010-08-011-0/+1
| | | | | | | | | | | | | | a double read from the endpoint. Make XPLAINBridge and USBtoSerial projects more reliable by forcing a flush if the UART-to-USB buffer becomes nearly full. Reduce locking in the LightweightRingBuffer.h header files by only locking on the update of the buffer count, and require insertions and removals from each buffer to occur in only one execution thread. Fix CDC_*_ReceiveByte() returning 0 when the interface is not configured, instead of the new -1 error value. Fix CDC_Host_ReceiveByte() not re-freezing the pipe if no packet has been received. Remove redundant Pipe token set commands in the CDC and RNDIS host class drivers.
* Fixed Serial peripheral driver not turning off the USART before ↵Dean Camera2010-07-311-0/+2
| | | | reconfiguring it, which would cause incorrect operation to occur (thanks to Bob Paddock).
* Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵Dean Camera2010-07-302-3/+3
| | | | due to its wide use in technical standards.
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-303-13/+13
| | | | EN-GB spelling dictionary.
* Fix typo in DualVirtualSerial.c due to the changed CDC Device APIs that was ↵Dean Camera2010-07-301-1/+2
| | | | preventing the demo from being compiled.
* Altered the CDC Deivice and Host Class drivers' receive byte routines, so ↵Dean Camera2010-07-302-0/+12
| | | | | | that no data is indicated by a negative return value. Added auto flushing of OUT data to the CDC Host Class driver's USBTask function to automatically flush the send pipe buffer.
* Spell check all source files once again to find any typos.Dean Camera2010-07-293-9/+9
|
* Fixed Benito and USBtoSerial projects not turning off the USART before ↵Dean Camera2010-07-291-0/+2
| | | | reconfiguring it, which could cause incorrect operation to occur (thanks to Bob Paddock).
* Add special support to the AVRISP-MKII for the new model USBTINY-MKII's ↵Dean Camera2010-07-291-0/+2
| | | | | | | | additional LED to indicate target power source. Add support to the USBTINY-MKII's additional LED in the board's LED driver header. Changed LED indicator masks for the AVRISP-MKII project, so that there are defined roles for each LED.
* Oops - remove duplicated SPI driver init mask.Dean Camera2010-07-291-1/+0
|
* Added support to the AVRISP-MKII project for ISP speeds slower than 125KHz ↵Dean Camera2010-07-291-0/+2
| | | | | | via a new software SPI driver. Added new SPI_ORDER_* data order masks to the SPI peripheral driver.
* Rename reserved members of all structs so that they are uniformly named ↵Dean Camera2010-07-261-1/+1
| | | | | | across all demos/projects/bootloaders. Added start of the Incomplete TMC demo's command parser code.
* Added periodic flush timer to the Benito project. Alter the serial ↵Dean Camera2010-07-251-1/+1
| | | | transmission code so that sent bytes do not block the remainder of the main program code from running.
* Add TMC device capabilities to the incomplete TMC demo.Dean Camera2010-07-231-1/+1
|
* Update size of compiled Mouse demo in documentation, fix indenting in Device.h.Dean Camera2010-07-231-1/+1
|
* Convert over internal pseudo-function macros to true inline functions for ↵Dean Camera2010-07-222-0/+6
| | | | added type-safety and compile-checking.
* Added start of a low level device Test and Measurement class demo (thanks to ↵Dean Camera2010-07-222-1/+2
| | | | Peter Lawrence).
* Add missing const qualifiers to class drivers.Dean Camera2010-07-211-0/+1
| | | | Indent core library function parameters so that there is only one parameter per line, to increase readability.
* Move and rename DevChaper9.c/.h and HostChapter9.c/.h to the HighLevel ↵Dean Camera2010-07-211-0/+6
| | | | | | | | directory, new named DeviceStandardReq.c/.h and HostStandardReq.c/.h. Rename LowLevel.c/.h to USBController.c/.h. Remove dependancies on the complete <avr/io.h> header in the HighLevel USB driver directory, to ensure less work is required in later (possible) ports.