aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
Commit message (Collapse)AuthorAgeFilesLines
* Fix invalid Event name rule in demo/project makefiles.Dean Camera2009-10-1647-64/+64
|
* Fix AudioOutput and AudioInput class driver demos' descriptors -- incorrect ↵Dean Camera2009-10-145-5/+3
| | | | 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-1250-308/+173
| | | | 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-112-0/+67
| | | | Removed accidental reference to the incomplete MIDI class bootloader in the Bootloader folder makefile.
* Add new MIDI Host Class driver to the library, and new MIDIHost ClassDriver ↵Dean Camera2009-10-0812-34/+2637
| | | | | | 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.
* Application documentation/comment cleanup.Dean Camera2009-10-0836-43/+33
|
* Add new MIDIHost LowLevel demo application.Dean Camera2009-10-0826-76/+2941
| | | | Make unfinished device mode applications use the VID/PID reserved for LUFA development devices.
* Fix broken Endpoint/Pipe stream templates.Dean Camera2009-10-042-38/+24
| | | | Simplify AudioOutput demos, to reduce the number of cycles needed to process each incomming sample.
* Changed Audio Class driver sample read/write functions to be inline, to ↵Dean Camera2009-10-033-20/+17
| | | | | | 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.
* Cleanups to the Device mode Mass Storage demo applications' SCSI routines.Dean Camera2009-10-025-115/+61
|
* Added new HID_HOST_BOOT_PROTOCOL_ONLY compile time token to reduce the size ↵Dean Camera2009-09-302-0/+2
| | | | of the HID Host Class driver when Report protocol is not needed.
* Removed mostly useless "TestApp" demo, as it was mainly useful only for ↵Dean Camera2009-09-302-5/+29
| | | | | | | | 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.
* Fix missing semicolons in the *WithParser Host mode demos.Dean Camera2009-09-292-2/+2
|
* Fix missing semicolons in the *WithParser Host mode demos.Dean Camera2009-09-292-2/+2
|
* Remove old OTG demo directory with useless TestApp demo. Add new DualRole ↵Dean Camera2009-09-2924-511/+737
| | | | directory with new Class Driver powered Mouse dual role demonstration application showing a dual role device using the HID host/device Class drivers.
* Fixed PrinterHost demo returning invalid Device ID data when the attached ↵Dean Camera2009-09-281-1/+7
| | | | device does not have a device ID (thanks to Andrei Krainev).
* Doxygen fixes to \param directives to give data direction in all projects. ↵Dean Camera2009-09-244-46/+26
| | | | Make HID item filtering routines clearer in the HID WithParser demos.
* Fix incorrect names for the HID Host protocol setting routines.Dean Camera2009-09-244-4/+4
|
* Fix more build errors in the LowLevel "WithParser" HID Host demos.Dean Camera2009-09-222-2/+2
|
* Fix broken Host ClassDriver MouseHostWithParser demo.Dean Camera2009-09-221-1/+1
|
* Add new error condition to the HID Report Parser for when a report is parsed ↵Dean Camera2009-09-226-13/+25
| | | | but no unfiltered items are encountered (i.e. nothing of interest in the device report). Make all host HID "WithParser" demos print the new error condition.
* Move Dataflash operational checking code out from SCSI.c into the ↵Dean Camera2009-09-226-58/+74
| | | | 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-212-2/+2
| | | | 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.
* Finish initial draft of the Host Mode HID Class driver.Dean Camera2009-09-2119-18/+5307
| | | | Add new MouseHostWithParser and KeyboardHostWithParser Host Class driver demos.
* Added new MassStorageKeyboard Device Class Driver demo (thanks to Matthias ↵Dean Camera2009-09-2116-2/+4190
| | | | Hullin).
* Fix building of KeyboardHostWithParser and MouseHostWithParser demos broken ↵Dean Camera2009-09-212-8/+16
| | | | by HIDParser API changes.
* Fix broken KeyboardMouse ClassDriver device demo - use internal HID Class ↵Dean Camera2009-09-211-21/+0
| | | | Driver structures for boot protocol reports.
* Add const qualifiers to Host mode Class drivers.Dean Camera2009-09-211-8/+10
| | | | Fix KeyboardHost ClassDriver demo; boot protocol keyboard report structure in the Host Mode HID Class driver uses the full keycode array from the attached device.
* Remove type definitions of the keyboard and mouse boot protocol report ↵Dean Camera2009-09-202-22/+0
| | | | layouts from the Device Class Driver demos, as they are now located inside the class driver.
* Add KeyboardHost HID Host Class driver demo to the library.Dean Camera2009-09-207-3/+2589
|
* Finish Class Driver MouseHost demo. Update HID Host Class driver; boot ↵Dean Camera2009-09-202-6/+80
| | | | protocol now works, still need to finish and test report protocol mode.
* Added new Pipe_IsFrozen() macro to determine if the currently selected pipe ↵Dean Camera2009-09-207-8/+40
| | | | | | | | is frozen. Added new USB_GetHIDReportSize() function to the HID report parser to retrieve the size of a given report by its ID. More additions to the unfinished HID Host Class Driver.
* Added support for the officially recommended layout of the external ↵Dean Camera2009-09-171-6/+1
| | | | | | peripherals connected to the BUMBLEB board. Added flag to the HID Host Class driver to indicate the currently selected reporting protocol.
* Fix Mass Storage Host Class driver GetMaxLUN command - incorrect function ↵Dean Camera2009-09-171-0/+8
| | | | | | return codes used in comparison to check for success. Add HID Host Class driver functions to set the report protocol, add more class driver documentation.
* Fixed Low Level USBtoSerial demo not storing received characters (thanks to ↵Dean Camera2009-09-131-1/+1
| | | | Michael from DirectAid.ca).
* Remove USE_NONSTANDARD_DESCRIPTOR_NAMES compile time token, split out ↵Dean Camera2009-09-0942-84/+40
| | | | | | standard descriptors into seperate USB_Descriptor_* and USB_StdDescriptor_* structures so that both can be used within the one project. Add guard to the HID Host Class driver SetProtocol command, to ensure that the device supports boot protocol mode before issuing the request.
* Change HID report parser so that it can calculate and record the sizes (IN, ↵Dean Camera2009-09-092-1/+29
| | | | | | OUT and FEATURE) of each report within the device, by report ID. This will be required in host mode, so that the host can determine how many bytes of data must be read in for each report. Add to MouseHostWithParser and KeyboardHostWithParser demos to print out the report sizes when a valid device is connected.
* Add Host mode Class driver demo summaries.Dean Camera2009-09-095-2/+201
|
* Finish Still Image Host class driver.Dean Camera2009-09-091-1/+9
|
* Add link to third-party signed version of the official FLIP DFU driver for ↵Dean Camera2009-09-071-0/+3
| | | | | | 64-bit Windows OSes to the DFU bootloader readme file. Add HTML anchor links to URLs in the documentation to ensure that they are rendered correctly in the generated documentation.
* Remove information about 64 bit Windows OS signing requirements for the CDC ↵Dean Camera2009-09-076-42/+0
| | | | based demos -- apparently the native CDC driver can be installed without first disabling the OS's driver signing requirements.
* Add in new invalid event hook check targets to project makefiles to produce ↵Dean Camera2009-09-0642-1251/+1972
| | | | | | | | 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.
* Added 64 bit OS driver installation instructions to the readme for all CDC ↵Dean Camera2009-09-066-0/+42
| | | | based projects.
* Changed Still Image Host class driver to auto-fill TransactionID element of ↵Dean Camera2009-09-067-190/+496
| | | | | | | | sent headers depending on the current session state. CDC based demos and project now work under 64 bit versions of Windows (thanks to Ronny Hanson, Thomas Bleeker). The Benito Programmer project now has its own unique VID/PID pair allocated from the Atmel donated LUFA VID/PID pool.
* Add StillImage Host Class Driver functions for opening and closing sessions. ↵Dean Camera2009-09-025-11/+31
| | | | | | 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".
* Add user-filtering to the HID report parser, so that the user code can ↵Dean Camera2009-09-024-0/+50
| | | | decide which items are to be stored into the HID_ReportInfo_t structure and which should be discarded to save on RAM usage.
* Fixed error in PrinterHost preventing the full page data from being sent to ↵Dean Camera2009-09-023-23/+11
| | | | the attached device.
* Fixed StillImageHost not correctly freezing and unfreezing data pipes while ↵Dean Camera2009-09-011-8/+5
| | | | | | waiting for a response block header. Added basic PIMA commands to the StillImage Host Class driver - need to extend to PIMA specific command functions.
* Move check for devices not supporting internal serials in demos which make ↵Dean Camera2009-09-0116-32/+96
| | | | use of USE_INTERNAL_SERIAL to Descriptors.c from Descriptors.h so that the warning is only generated at most once per compilation.
* Oops - with new changes to the way the device Configuration Descriptor is ↵Dean Camera2009-08-3112-20/+20
| | | | retrieved from the device, ensure that the correct position pointer is cast when extracting descriptor parameters.