aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/ManPages/FutureChanges.txt
Commit message (Collapse)AuthorAgeFilesLines
* Begin processing code for Service Discovery Protocol attributes.Dean Camera2010-05-171-0/+1
|
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-40/+40
| | | | correctly converted to the target system's native end of line style.
* Added new ENDPOINT_*_BusSuspended error code to the Endpoint function, so ↵Dean Camera2010-05-031-1/+0
| | | | that the stream functions early-abort if the bus is suspended before or during a transfer.
* Add file-level brief documentation.Dean Camera2010-03-291-0/+1
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* Minor documentation updates.Dean Camera2010-03-011-1/+2
|
* Revert changes made for the partial port to the AVR32 architecture.Dean Camera2010-02-241-18/+1
|
* Start porting the USB core to the AVR32 UC3B.Dean Camera2010-02-231-1/+1
|
* Update Temperature board driver to be AVR32 compatible when the ADC ↵Dean Camera2010-02-231-1/+2
| | | | | | peripheral driver is eventually ported. Make architecture includes explicit for both the AVR32 and the AVR8, to make way for future architecture ports. Add SPI driver aliases for the old function names in the AVR8 driver, so that existing code will still compile against the new version.
* Update manual pages to reference unfinished AVR32 port, add port status to ↵Dean Camera2010-02-221-1/+17
| | | | the Future Changes page.
* Fixed accuracy of the SERIAL_UBBRVAL() and SERIAL_2X_UBBRVAL() macros for ↵Dean Camera2010-02-121-1/+0
| | | | higher baudrates (thanks to Renaud Cerrato).
* Add a TELNET server to the webserver project, which currently can list ↵Dean Camera2010-02-031-0/+1
| | | | active TCP connections.
* Update driver INF files - change manufacturer name from the original ↵Dean Camera2010-01-291-1/+0
| | | | template's name to the Four Walled Cubicle website.
* Ensure TPI enable timing requirements are met in AVRISP-MKII programmer. ↵Dean Camera2010-01-271-1/+0
| | | | Remove invalid code in the TPI read/write functions.
* Manually pull PDI clock pin high for 1ms before disabling PDI mode in the ↵Dean Camera2010-01-271-1/+0
| | | | AVRISP-MKII project, to ensure that the PDI bus is disabled in the target and /RESET functionality restored.
* Enhance TemperatureDatalogger project -- add RTC capabilities so that data ↵Dean Camera2010-01-241-0/+3
| | | | is logged along with the current time and date. Make logging interval configurable, set by a C# PC host application.
* Clean up MassStorageKeyboard demo.Dean Camera2010-01-031-0/+1
|
* Combine AVRISP project TPI and PDI lib directories - these protocols use the ↵Dean Camera2009-12-241-1/+0
| | | | same underlying XPROG wrapper for the host-to-programmer command wrapping.
* Enhance the HotmailNotifier project so that the LEDs' individual brightness ↵Dean Camera2009-12-181-0/+1
| | | | can be controlled individually via software PWM.
* Increase timeout of Mass Storage and Still Image host commands to 10 seconds ↵Dean Camera2009-12-091-1/+5
| | | | | | | | (up from 5) to account for slow-processing devices. Added brace guards to macros with parameters to prevent unintended changed evaluation of the macro expression. Minor code cleanups (remove redundant comments, fix spacing, etc.).
* Add support for unwrapping of the XMEGA PDI programming protocol to the ↵Dean Camera2009-12-021-1/+0
| | | | AVRISP Programmer project.
* Better checking of whether a packet is received in the RNDISEthernetHost ↵Dean Camera2009-11-271-3/+0
| | | | Class driver demo - show busy LED status while packets are being printed out.
* Fix RNDIS Device Class driver - RNDISConstants.h has moved out to the Common ↵Dean Camera2009-11-261-2/+1
| | | | Class driver directory.
* Updated John Steggall's software USART in the XPLAINBridge project.Dean Camera2009-11-261-0/+1
|
* Commit for the 091122 release.Dean Camera2009-11-221-13/+15
|
* Fixed LowLevel Keyboard demo not saving the issued report only after it has ↵Dean Camera2009-11-201-2/+1
| | | | | | been written to the endpoint. Added support for multiple keyboard keycodes in a single report to the LowLevel and ClassDriver Keyboard demos.
* Make RNDISHost demo validate the set Packet Filter to ensure that it is ↵Dean Camera2009-11-171-0/+1
| | | | | | being sent correctly. Add new (incomplete) StandaloneProgrammer project, using the ELM Petite FAT library to read files stored on the board's dataflash by the host.
* Corrected the name of the misnamed USB_GetDeviceConfigDescriptor() function ↵Dean Camera2009-11-131-3/+0
| | | | to USB_Host_GetDeviceConfigDescriptor().
* Minor code cleanups for clarity.Dean Camera2009-11-111-2/+2
|
* Fixed HID host Class driver report send/receive report broken when issued ↵Dean Camera2009-11-091-1/+1
| | | | | | | | through the control pipe. Make Mass Storage device Class driver accept resets at any time, rather than just after a command block has been processed. Remove the HID device parser from the boot protocol Keyboard/Mouse demos.
* Remove dependancies from the LowLevel demos to the ClassDriver demos, since ↵Dean Camera2009-11-081-2/+7
| | | | the use of ClassDriver headers now outputs an error when NO_STREAM_CALLBACKS is used.
* Add optional double-banking support to the Device mode Class Drivers, on a ↵Dean Camera2009-11-061-0/+1
| | | | per-endpoint, per-interface level.
* Fixed HID report parser collection paths invalid due to misplaced semicolon ↵Dean Camera2009-11-041-1/+0
| | | | in the free path item search loop. Increased the default number of collection paths allowable by the parser.
* Add new CDCMouse ClassDriver device demo, combining a CDC Virtual Serial ↵Dean Camera2009-11-031-1/+0
| | | | Port and a HID Mouse.
* Rename the AT90USBXXX67 internal driver directory to AVRU4U6U7.Dean Camera2009-11-031-1/+2
|
* Add const attribute to class driver APIs.Dean Camera2009-11-031-1/+2
| | | | Add new manual pages detailing the advantages of LUFA over the official Atmel USB AVR stack, and reasons why LUFA should be used over a built-from-scratch USB stack.
* Make HID device class driver reselect the correct endpoint after the user ↵Dean Camera2009-10-261-1/+0
| | | | callbacks have fired.
* Moved USBtoSerial demo the Projects directory, as it is simply an expanded ↵Dean Camera2009-10-181-1/+2
| | | | CDC demo. Added const qualifier to Endpoint/Pipe stream write routines.
* Fix invalid Event name rule in demo/project makefiles.Dean Camera2009-10-161-1/+2
|
* Fix AudioOutput and AudioInput class driver demos' descriptors -- incorrect ↵Dean Camera2009-10-141-2/+0
| | | | value was being supplied in the audio descritors field giving the number of discrete audio formats the device supports.
* Make Audio device demos compatible with AVRs running at 16MHz instead of 8MHz.Dean Camera2009-10-121-0/+1
| | | | Fix up demo documentation device compatibility list to be as general as possible to reduce changes required as Atmel releases more devices within the same USB AVR series.
* Added stdio.h stream examples for the virtual CDC UART in the CDC host demos.Dean Camera2009-10-111-1/+1
| | | | Removed accidental reference to the incomplete MIDI class bootloader in the Bootloader folder makefile.
* Add new MIDIHost LowLevel demo application.Dean Camera2009-10-081-0/+1
| | | | Make unfinished device mode applications use the VID/PID reserved for LUFA development devices.
* Removed mostly useless "TestApp" demo, as it was mainly useful only for ↵Dean Camera2009-09-301-2/+2
| | | | | | | | checking for sytax errors in the library. MIDI device demos now receive MIDI events from the host and display note ON messages via the board LEDs. Added beginnings of a MIDI class bootloader.
* Fixed PrinterHost demo returning invalid Device ID data when the attached ↵Dean Camera2009-09-281-2/+2
| | | | device does not have a device ID (thanks to Andrei Krainev).
* Move Dataflash operational checking code out from SCSI.c into the ↵Dean Camera2009-09-221-0/+1
| | | | DataflashManager.c in the Device mode Mass Storage demos.
* Add new attributes to the HID Report Parser and HID Host Mode Class driver ↵Dean Camera2009-09-211-5/+6
| | | | to keep track of the largest report the device can send for buffer allocation purposes. Change MouseHostWithParser and KeyboardHostWithParser demos to only allocate the needed number of bytes.
* Add Host mode Class driver demo summaries.Dean Camera2009-09-091-1/+1
|
* Add in new invalid event hook check targets to project makefiles to produce ↵Dean Camera2009-09-061-3/+0
| | | | | | | | compilation errors when invalid event names are used in a project. Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles (thanks to Opendous Inc.) Fix allowable F_CPU values comment in project makefiles.
* Add StillImage Host Class Driver functions for opening and closing sessions. ↵Dean Camera2009-09-021-1/+0
| | | | | | Ensure IsActive is set on the interface to allow device functions to run. Fix spelling of "Received" in all source files where it is misspelt "Recieved".
* Fix up MissileLauncher demo's ConfigurationDescriptor.c so that it uses the ↵Dean Camera2009-09-011-2/+2
| | | | new USB_GetDeviceConfigDescriptor() function parameters.