aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA.pnproj
Commit message (Collapse)AuthorAgeFilesLines
...
* Renamed HotmailNotifier project to LEDNotifier.Dean Camera2009-12-181-1/+1
|
* Enhance the HotmailNotifier project so that the LEDs' individual brightness ↵Dean Camera2009-12-181-1/+1
| | | | can be controlled individually via software PWM.
* Un-inline the SendAddress function in NVMTarget.c/.h of the AVRISP project.Dean Camera2009-12-171-1/+1
| | | | Add new HotmailNotifier project, which changes a LED's colour based on the user's unread email count as sent from Windows Live Messenger.
* Split out NVM access code in the AVRISP project into a seperate NVMTarget.c ↵Dean Camera2009-12-141-1/+1
| | | | source file and header. Make NVM register accesses use the NVM base address as set by the host, rather than using the fixed value from the XMEGA datasheet.
* The AVRISP project can now enter PDI mode under both bit-bang and hardware ↵Dean Camera2009-12-131-1/+1
| | | | USART connection modes, tested against the XPLAIN board hardware. Still need to complete higher level NVM access code so that the device's memories can be read and written.
* Additional file renames and modifications to change CDC demos to VirtualSerial.Dean Camera2009-12-071-1/+1
|
* Added support for the Atmel EVK527 board hardware.Dean Camera2009-12-041-1/+1
|
* Added support for the Dataflash mounted on the XPLAIN board. Added new ↵Dean Camera2009-12-031-1/+1
| | | | XPLAIN_REV1 board target for the first revision XPLAIN board, which used a different (smaller) Dataflash IC to later revisions.
* Started implementing the low level PDI protocol in the AVRISP project, for ↵Dean Camera2009-12-031-1/+1
| | | | XMEGA device programming.
* Add new more reliable software UART for the XPLAINBridge project by David ↵Dean Camera2009-12-021-1/+1
| | | | Prentice and Peter Danneger.
* Removed John Steggall's software UART code from the XPLAIN Bridge project ↵Dean Camera2009-12-021-1/+1
| | | | due to reliability issues.
* Add support for unwrapping of the XMEGA PDI programming protocol to the ↵Dean Camera2009-12-021-1/+1
| | | | AVRISP Programmer project.
* Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone ↵Dean Camera2009-12-021-1/+1
| | | | project.
* Added new RNDIS Host class driver and the beginnings of a RNDISEthernetHost ↵Dean Camera2009-11-261-1/+1
| | | | | | | | Class Driver demo. Fixed all Class drivers to ensure they have appropriate guards on each function to ensure the device is enumerated before running, fixed error codes on all guards to return "DeviceDisconnected" where possble. Renamed HOST_SENDCONTROL_DeviceDisconnect enum value to HOST_SENDCONTROL_DeviceDisconnected to be in line with the rest of the library enum error codes.
* Updated John Steggall's software USART in the XPLAINBridge project.Dean Camera2009-11-261-1/+1
|
* Fix build and Doxygen errors.Dean Camera2009-11-251-1/+1
|
* Added new RNDISHost Host LowLevel demo. Fixed misnamed Pipe_SetPipeToken() ↵Dean Camera2009-11-251-1/+1
| | | | macro for setting a pipe's direction. Fixed CDCHost failing on devices with bidirectional endpoints.
* Added new XPLAIN serial Bridge project (thanks to John Steggall for the ↵Dean Camera2009-11-251-1/+1
| | | | software UART code).
* The incomplete StandaloneProgrammer project now uses Host and Device Mass ↵Dean Camera2009-11-231-1/+1
| | | | | | | | | | | | storage classes, so that program data can either be loaded onto the device's Dataflash storage, or read off an attached USB memory stick. The USB target family and allowable USB mode tokens are now public and documented (USB_CAN_BE_*, USB_SERIES_*_AVR). The SCSI_Request_Sense_Response_t and SCSI_Inquiry_Response_t type defines are now part of the Mass Storage Class driver common defines, rather than being defined in the Host mode Class driver section only. The USB_MODE_HOST token is now defined even when host mode is not available. Added missing CDC_Host_CreateBlockingStream() function code to the CDC Host Class driver.
* Make RNDISHost demo validate the set Packet Filter to ensure that it is ↵Dean Camera2009-11-171-1/+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.
* Add beginnings of a RNDIS Ethernet Host demo.Dean Camera2009-11-121-1/+1
|
* Added new Printer Host mode Class driver.Dean Camera2009-11-041-1/+1
| | | | | | Added new Printer Host mode ClassDriver demo. Added table of supported classes and modes to the main USB Class Driver documentation.
* Added new JoystickHostWithParser demos to the library.Dean Camera2009-11-041-1/+1
| | | | Add some missing documentation to some of the library demos.
* Add new CDCMouse ClassDriver device demo, combining a CDC Virtual Serial ↵Dean Camera2009-11-031-1/+1
| | | | Port and a HID Mouse.
* Rename the AT90USBXXX67 internal driver directory to AVRU4U6U7.Dean Camera2009-11-031-1/+1
|
* Add const attribute to class driver APIs.Dean Camera2009-11-031-1/+1
| | | | 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.
* Moved USBtoSerial demo the Projects directory, as it is simply an expanded ↵Dean Camera2009-10-181-1/+1
| | | | CDC demo. Added const qualifier to Endpoint/Pipe stream write routines.
* Make Audio device demos compatible with AVRs running at 16MHz instead of 8MHz.Dean Camera2009-10-121-1/+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.
* Add new MIDI Host Class driver to the library, and new MIDIHost ClassDriver ↵Dean Camera2009-10-081-1/+1
| | | | | | demo. Make MouseHost and KeyboardHost ClassDriver demos use the HID Class driver's structures for the boot protocol Mouse/Keyboard report data, rather than rolling their own.
* Add new MIDIHost LowLevel demo application.Dean Camera2009-10-081-1/+1
| | | | Make unfinished device mode applications use the VID/PID reserved for LUFA development devices.
* Minor documentation fixups.Dean Camera2009-10-031-1/+1
|
* Changed Audio Class driver sample read/write functions to be inline, to ↵Dean Camera2009-10-031-1/+1
| | | | | | reduce the number of cycles needed to transfer samples to and from the device (allowing more time for processing and output). Fixed ClassDriver AudioOutput demo not selecting an audio output mode.
* Added support for the Atmel XPLAIN board.Dean Camera2009-10-021-1/+1
|
* Removed mostly useless "TestApp" demo, as it was mainly useful only for ↵Dean Camera2009-09-301-1/+1
| | | | | | | | 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.
* Add information on the new MouseHostDevice dual role demo to the library ↵Dean Camera2009-09-291-1/+1
| | | | documentation. Add a 0x prefix to the LUFA_VERSION_INTEGER define to ensure that it is stored as BCD, and not an octal value.
* Finish initial draft of the Host Mode HID Class driver.Dean Camera2009-09-211-1/+1
| | | | Add new MouseHostWithParser and KeyboardHostWithParser Host Class driver demos.
* Added new MassStorageKeyboard Device Class Driver demo (thanks to Matthias ↵Dean Camera2009-09-211-1/+1
| | | | Hullin).
* Add KeyboardHost HID Host Class driver demo to the library.Dean Camera2009-09-201-1/+1
|
* Finish Class Driver MouseHost demo. Update HID Host Class driver; boot ↵Dean Camera2009-09-201-1/+1
| | | | protocol now works, still need to finish and test report protocol mode.
* Added support for the officially recommended layout of the external ↵Dean Camera2009-09-171-1/+1
| | | | | | peripherals connected to the BUMBLEB board. Added flag to the HID Host Class driver to indicate the currently selected reporting protocol.
* Add Host mode Class driver demo summaries.Dean Camera2009-09-091-1/+1
|
* Added start of the Still Image Host Class driver demo and driver code.Dean Camera2009-08-301-1/+1
| | | | Re-enabled building of the Host mode demos ClassDriver directory.
* Remove skeleton Audio and MIDI Host mode Class drivers -- will not implement ↵Dean Camera2009-08-301-1/+1
| | | | in next release.
* Added new "Common" section to the class drivers, to hold all ↵Dean Camera2009-08-271-1/+1
| | | | | | mode-independant definitions for clarity. Moved SCSI command/sense constants into the Mass Storage Class driver, instead of the user-code.
* Add SCSICodes.h to the Class Driver Common folder, and automatically include ↵Dean Camera2009-08-261-1/+1
| | | | it in both the Host and Device Mass Storage Class drivers. Delete existing version from the ClassDriver MassStorage device demo's /Lib/ folder.
* Optimized Endpoint_Read_Word_* and Pipe_Read_Word_* macros to reduce ↵Dean Camera2009-08-251-1/+1
| | | | | | compiled size. Fixed Programmer's Notepad project file to reflect new location of AVRISP project.
* Updated Benito project -- added hardware interrupt and software buffering ↵Dean Camera2009-08-251-1/+1
| | | | | | | | for serial data reception to prevent missed characters, condensed pulse generation counters into a struct for clarity. Added check to CDC_Device_BytesReceived() to ensure 0 is returned when device is not enumerated to a host. Move AVRISP project's V2Protocol_DelayMS() function to be static inline, as it is now very minimal. Added extra project doxygen documentation.
* Moved out target-related V2 protocol commands into a seperate file for the ↵Dean Camera2009-08-231-1/+1
| | | | | | AVRISP project. Added Load Extended Command functionality to the LOAD ADDRESS V2 Protocol command handler for devices with more than 64KB of memory.
* Correct Programmer's Notepad project file to use the correct path for the ↵Dean Camera2009-08-201-1/+1
| | | | AVRISP project files.
* Moved out the handling of V2 Protocol parameters to a seperate set of files. ↵Dean Camera2009-08-191-1/+1
| | | | Added parameter privellages, so that an error can be returned to the host when trying to perform a get/set value action on a parameter without the correct privellages.