aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
Commit message (Collapse)AuthorAgeFilesLines
* Fix SoftUART.c not compiling due to accidental check in of changes not yet ↵Dean Camera2010-10-131-3/+3
| | | | complete in the rest of the XPLAINBridge project code.
* Minor documentation corrections.Dean Camera2010-10-133-6/+6
|
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-13158-2245/+2396
| | | | tool made by Laszlo Monda
* Fix Webserver project code not compiling due to the changes to the USB mode ↵Dean Camera2010-10-124-4/+4
| | | | selection constant names.
* Fixed ISR definition conflict in the XPLAIN bridge between the software UART ↵Dean Camera2010-10-102-11/+16
| | | | and the AVRISP-MKII ISP modules.
* Revert change to the AVRISP-MKII project for fuse byte programming via the ↵Dean Camera2010-10-021-9/+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-022-3/+10
| | | | XMEGA targets.
* Fixed broken FLASH/EEPROM programming in the AVRISP-MKII clone project when ↵Dean Camera2010-10-022-4/+15
| | | | writing in non-paged mode and the polling byte cannot be used.
* Fixed LowLevel JoystickHostWithParser demo not saving the chosen HID ↵Dean Camera2010-10-011-15/+12
| | | | | | interface's report descriptor size. Simplified low level Host demo configuration descriptor parser routines.
* Fix low level host mode demos not correctly fetching the next endpoint when ↵Dean Camera2010-09-303-34/+47
| | | | | | 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-308-8/+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-2/+4
| | | | | | project so that it defaults to active low drive. Fixed incorrect USB_DeviceState value when unconfiguring the device without an address set.
* Move out many of the common class driver constants into grouped enums, to ↵Dean Camera2010-09-2812-69/+73
| | | | | | | | 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-2411-22/+22
| | | | all dfu-programmer versions.
* Added the --suppress-bootloader-mem option to the makefile dfu target, to ↵Dean Camera2010-09-2411-33/+33
| | | | | | | | 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.
* Make project makefiles correctly clean intermeditary build files from ↵Dean Camera2010-09-1511-22/+22
| | | | assembly and C++ sources (thanks to Daniel Czigany).
* Added board hardware driver support for the BUI development board.Dean Camera2010-09-142-114/+1
|
* Remove incomplete MIDIToneGenerator project.Dean Camera2010-09-135-1391/+0
|
* Fix typos in the project overview text files.Dean Camera2010-09-093-3/+3
|
* Added class specific descriptor type defines with standard USB-IF element ↵Dean Camera2010-09-096-30/+30
| | | | naming.
* Clarify in the project documentation files what the each of the different ↵Dean Camera2010-08-319-26/+26
| | | | USB AVR device "series" comprises of.
* Fix incorrect ADC driver documentation for the parameters of ADC_Init(), fix ↵Dean Camera2010-08-312-2/+2
| | | | incorrect call to ADC_Init() in the TemperatureDatalogger project.
* Remove remaining void* descriptor casts in the projects and demos that were ↵Dean Camera2010-08-294-19/+19
| | | | not removed when the GetDescriptor callback function's signature was altered.
* Add better description of the Ultra-Lightweight Ring Buffer header files.Dean Camera2010-08-293-3/+24
|
* Changed the signature of the CALLBACK_USB_GetDescriptor() callback function ↵Dean Camera2010-08-2422-100/+111
| | | | so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).
* Moved calls to Device mode Class Driver events to after the request has been ↵Dean Camera2010-08-223-1/+3
| | | | | | 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/+4
| | | | chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco).
* Fixed MassStorage based demos and projects resetting the SCSI sense values ↵Dean Camera2010-08-186-95/+204
| | | | | | 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.
* Removed complicated logic for the Endpoint_ConfigureEndpoint() function to ↵Dean Camera2010-08-099-50/+44
| | | | | | 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.
* Commit for the 100807 release.Dean Camera2010-08-091-1/+1
|
* Fix invocations of avr-size in all makefiles broken on unpatched *nix ↵Dean Camera2010-08-0812-12/+48
| | | | systems, due to the recent update to the latest WinAVR makefile template.
* Ensure all demos now compile in C99 standards mode, and not GNU99 (C99 + GNU ↵Dean Camera2010-08-031-3/+3
| | | | extensions).
* Hide the PROGMEM attribute from Doxygen, as it appears to confuse the parser ↵Dean Camera2010-08-0211-12/+28
| | | | in some situations.
* Fix XPLAINBridge project discarding characters from the USB interface due to ↵Dean Camera2010-08-017-184/+241
| | | | | | | | | | | | | | 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.
* Invert the logic for the VBUS power light in the AVRISP-MKII project for the ↵Dean Camera2010-08-011-1/+1
| | | | USBTINY-MKII board target.
* Fixed Serial peripheral driver not turning off the USART before ↵Dean Camera2010-07-312-2/+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-303-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-3024-52/+52
| | | | EN-GB spelling dictionary.
* Spell check more of the third party libraries used by LUFA.Dean Camera2010-07-309-36/+36
|
* Altered the CDC Deivice and Host Class drivers' receive byte routines, so ↵Dean Camera2010-07-303-10/+8
| | | | | | 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.
* Oops - need to turn off USART via control register B before reconfiguring, ↵Dean Camera2010-07-302-4/+4
| | | | fix ordering of USART control register modifications in the Benito and USBtoSerial projects.
* Spell check all source files once again to find any typos.Dean Camera2010-07-2934-275/+275
|
* Fixed Benito and USBtoSerial projects not turning off the USART before ↵Dean Camera2010-07-292-6/+21
| | | | 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-292-6/+14
| | | | | | | | 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.
* Remove obsolete macros and preprocessor checks from the AVRISP-MKII ↵Dean Camera2010-07-291-29/+16
| | | | project's V2Protocol command handler header file.
* Added support to the AVRISP-MKII project for ISP speeds slower than 125KHz ↵Dean Camera2010-07-296-86/+254
| | | | | | via a new software SPI driver. Added new SPI_ORDER_* data order masks to the SPI peripheral driver.
* Move over message ID specific header data to unions inside the standard TMC ↵Dean Camera2010-07-271-2/+2
| | | | header structure, so that all header data is read in one chunk in the incomplete TMC demo.
* Rename reserved members of all structs so that they are uniformly named ↵Dean Camera2010-07-261-4/+4
| | | | | | across all demos/projects/bootloaders. Added start of the Incomplete TMC demo's command parser code.
* Add missing INTERRUPT_CONTROL_ENDPOINT compile time option to the Mass ↵Dean Camera2010-07-262-0/+2
| | | | | | Storage device projects/demos and incomplete Test and Measurement Class demo, which was accidentally removed during the makefile updates. Alter Test and Measurement Class demo's request handlers to accept, process and correctly return the fields indicated in the specification.
* Added periodic flush timer to the Benito project. Alter the serial ↵Dean Camera2010-07-254-13/+28
| | | | transmission code so that sent bytes do not block the remainder of the main program code from running.