aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/ManPages
Commit message (Collapse)AuthorAgeFilesLines
* Fixed SPI driver not explicitly setting /SS and MISO pins as inputs when ↵Dean Camera2010-10-061-0/+1
| | | | SPI_Init() is called.
* Cache the USB_DeviceState variable internally in the library core when ↵Dean Camera2010-10-063-4/+4
| | | | multiple checks are required in a single loop iteration, to reduce compiled code size.
* Revert change to the AVRISP-MKII project for fuse byte programming via the ↵Dean Camera2010-10-021-1/+0
| | | | CMDEX bit - this appears to be an error in the XMEGA manual external memory programming table.
* Fixed broken lock byte programming in the AVRISP-MKII clone project for some ↵Dean Camera2010-10-021-0/+1
| | | | XMEGA targets.
* Fixed broken FLASH/EEPROM programming in the AVRISP-MKII clone project when ↵Dean Camera2010-10-021-0/+1
| | | | writing in non-paged mode and the polling byte cannot be used.
* Make Host mode Class drivers only set the class driver instance's state ↵Dean Camera2010-09-302-2/+3
| | | | values once a compatible interface has been found within the device.
* Fix incorrectly named configuration descriptor callback routines in the host ↵Dean Camera2010-09-301-1/+0
| | | | | | mode class drivers. Fix typo in MIDI low level device demo.
* Fix low level host mode demos not correctly fetching the next endpoint when ↵Dean Camera2010-09-301-1/+1
| | | | | | an invalid interface is discarded. Update the pipe configuration routines in the host mode class drivers so that they use the same new code to enumerate compatible devices to increase reliability. Add support to the host mode class drivers for non-sequential (but non-overlapping with other interface) pipe numbers.
* Reverted Endpoint/Pipe non-sequential configuration hack, placed restriction ↵Dean Camera2010-09-303-0/+8
| | | | | | | | | | 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.
* Changed default value for the reset polarity parameter in the AVRISP-MKII ↵Dean Camera2010-09-292-1/+3
| | | | | | project so that it defaults to active low drive. Fixed incorrect USB_DeviceState value when unconfiguring the device without an address set.
* Added board hardware driver support for the Arduino Uno development board.Dean Camera2010-09-282-0/+3
| | | | Fixed incorrect LEDs_ChangeLEDs() function in the Benito board LED driver.
* Added CDC functional descriptor structs to the Low Level CDC demos and CDC ↵Dean Camera2010-09-282-0/+2
| | | | | | class bootloader, to improve the readability of the descriptors. Fixed BootloaderCDC project failing on some operating systems due to removed Line Encoding options (thanks to Alexey Belyaev).
* Move out many of the common class driver constants into grouped enums, to ↵Dean Camera2010-09-283-2/+6
| | | | | | | | 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.
* Remove dfu-programmer program switches, to ensure maximum compatibility with ↵Dean Camera2010-09-241-5/+3
| | | | all dfu-programmer versions.
* Added the --suppress-bootloader-mem option to the makefile dfu target, to ↵Dean Camera2010-09-242-5/+8
| | | | | | | | ensure that writes to the bootloader section of the AVR's flash memory are ignored (thanks to Axel Rohde). Fixed incorrect command name for EEPROM memory programming in the makefile dfu-ee target. Makefile whitespace fixes.
* Fixed endpoint selection within the CALLBACK_HID_Device_CreateHIDReport() ↵Dean Camera2010-09-241-0/+1
| | | | | | callback function causing broken GET REPORT requests. Minor whitespace fixes.
* Reverted modifications to USBInterrupt.h that were intefering with correct ↵Dean Camera2010-09-221-0/+1
| | | | | | | | host mode operation. Fixed SUSPI interrupt not being cleared during device mode enumeration, causing accidental mis-fires on re-enumeration. Fixed JTAG_DEBUG_POINT() and JTAG_DEBUG_BREAK() macros not compiling under pure C99 standards mode.
* Fixed USB_Host_ClearPipeStall() incorrectly attempting to determine the ↵Dean Camera2010-09-211-0/+1
| | | | endpoint's direction from the currently selected pipe.
* Ensure device address latch bit is not set at the same time as the new ↵Dean Camera2010-09-191-1/+1
| | | | | | | | 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.
* Removed the EVENT_USB_InitFailure() event, as not specifying a USB mode to ↵Dean Camera2010-09-152-0/+3
| | | | USB_Init() now defaults the controller into UID selection mode.
* Fix incorrect documentation on the Get Descriptor standard request.Dean Camera2010-09-151-1/+1
|
* Make project makefiles correctly clean intermeditary build files from ↵Dean Camera2010-09-151-0/+1
| | | | assembly and C++ sources (thanks to Daniel Czigany).
* Minor documentation corrections.Dean Camera2010-09-155-9/+10
|
* Fixed incorrect signature reported in the CDC class bootloader for the ↵Dean Camera2010-09-141-0/+1
| | | | ATMEGA32U2.
* 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.