aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
Commit message (Collapse)AuthorAgeFilesLines
* Fixed CDCHost demo unfreezing IN pipes during configuration, rather than ↵Dean Camera2009-06-232-3/+7
| | | | | | during use. Changed Pipe stream functions to automatically set the pipe token, allowing them to be used on bidirectional pipes without having to explicitly call Pipe_SetPipeToken() beforehand.
* Add demos/bootloaders/projects overview to the manual.Dean Camera2009-06-221-1/+1
|
* Corrected the ADC driver for the ATMEGA16U4 and ATMEGA32U4 (thanks to ↵Dean Camera2009-06-221-1/+1
| | | | Opendous Inc.).
* Added new USE_INTERNAL_SERIAL define for using the unique serial numbers in ↵Dean Camera2009-06-214-22/+4
| | | | some AVR models as the USB device's serial number, added NO_INTERNAL_SERIAL compile time option to turn off new serial number reading code. Updated Mass Storage and CDC based demos to use the new device serial number if the device it is compiled for supports it.
* Trim unique serial number created by the USE_INTERNAL_SERIAL option to 12 ↵Dean Camera2009-06-211-1/+1
| | | | characters rather than 20 - apparently Windows will implode if a serial number is too long.
* Added USE_INTERNAL_SERIAL compile time option to automatically read out the ↵Dean Camera2009-06-202-2/+2
| | | | internal unique serial number as the device's serial number descriptor on supported AVR models.
* Clean up RNDIS demo type define names.Dean Camera2009-06-193-36/+36
|
* Fix makefiles -- the auto-addition of -D switches to each LUFA compile time ↵Dean Camera2009-06-1946-270/+270
| | | | option was faulty, due to GNUMake becomming confused by the spaces in the USE_STATIC_OPTIONS lines. Make user add in the switches explicitly instead.
* Move LUFA compile time options to a new section in the application makefiles ↵Dean Camera2009-06-1945-166/+416
| | | | for clarity.
* Extend USB_GetDeviceConfigDescriptor() routine to require the configuration ↵Dean Camera2009-06-1910-18/+19
| | | | number within the device to fetch, to add support for multi-configuration devices.
* Re-add in simple scheduler for compatibility with legacy code, mark all ↵Dean Camera2009-06-191-3/+11
| | | | scheduler related files as deprecated.
* Break device mode class driver interfaces into seperate config and state ↵Dean Camera2009-06-1828-245/+385
| | | | structs which are then combined, for clarity. Move device mode class driver interfaces back into the device mode class driver headers from the common class headers to make room for host class interfaces.
* Added new USB_Host_ClearPipeStall() convenience function to clear a stall ↵Dean Camera2009-06-185-41/+6
| | | | | | | | | | condition on an attached device's endpoint. Added new USB_Host_GetDeviceDescriptor() convenience function to retrieve the attached device's Device descriptor. Make Pipe_ConfigurePipe() mask the given endpoint number against PIPE_EPNUM_MASK to ensure the endpoint IN direction bit is cleared to prevent endpoint type corruption. Fix documentation mentioning Pipe_GetCurrentToken() function when real name is Pipe_GetPipeToken().
* Remove hardcoded DOT path from all Doxygen config files.Dean Camera2009-06-1643-43/+43
| | | | Better documentation for the MissleLauncher project - add credit to PyLauncher project.
* Pipe_GetErrorFlags() now returns additional error flags for overflow and ↵Dean Camera2009-06-163-8/+8
| | | | | | underflow errors. Change MIDI demos to use real MIDI command values, and shift for the USB wrapper, rather than shift for the MIDI bytes. This is a little confusing for the MIDI USB wrapper, but allows for the use of real standardized MIDI command values.
* Added USB Missle Launcher project, submitted by Dave Fletcher.Dean Camera2009-06-161-2/+2
|
* Added new USB_Host_SetDeviceConfiguration() convenience function. Change ↵Dean Camera2009-06-168-243/+140
| | | | over Low Level host demos to use the new routine.
* Remove ConfigDescriptor.c/.h files from the ClassDriver Host demos, as they ↵Dean Camera2009-06-1532-2073/+21
| | | | will be obsoleted when the Host mode class drivers are complete. Add new StillImage stub class driver common header.
* Fixed broken HIDReportParser.c.Dean Camera2009-06-151-1/+1
|
* More Doxygen fixes - ensure no undocumented function parameters.Dean Camera2009-06-1545-43/+46
|
* Doxygen corrections to fix Doxygen warnings in some demos.Dean Camera2009-06-157-2/+11
|
* Enhanced class drivers to use the same public/private section seperations as ↵Dean Camera2009-06-151-0/+6
| | | | other portions of the library.
* Add host mode USB Class driver stubs, add beginnings of a CDC host class driver.Dean Camera2009-06-1450-158/+106
| | | | | | Split out common defines/types from class drivers into a seperate common class driver directory. Make central USB Class driver dispatch headers, used for both device and host modes.
* Changed per-device controller preprocessor checks over to per-device series ↵Dean Camera2009-06-1410-14/+21
| | | | | | for better device control. Fixed error in Endpoint.c using HSOFI rather than SOFI for counting elapsed milliseconds.
* Changed to new device mode Class Driver function name prefixes to make way ↵Dean Camera2009-06-1121-100/+101
| | | | for similar host mode Class drivers.
* Some minor whitespace corrections.Dean Camera2009-06-1124-218/+218
|
* Fixes to the MIDI device demos (ClassDriver, LowLevel); discard unused ↵Dean Camera2009-06-108-74/+62
| | | | read-in events from the host, use standard MIDI event structure in low level demo rather than sending individual bytes.
* Copy over schedulerless host demos to ClassDrivers directory, for later ↵Dean Camera2009-06-0966-0/+25137
| | | | modification to new Host mode USB class drivers.
* Deleted Host ClassDriver demos -- not yet started, faster to rebase new ↵Dean Camera2009-06-0969-25565/+13
| | | | | | ClassDriver demos from the newly schedulerless LowLevel host demos rather than re-convert each demo from the previous scheduler-based implementations. Fixes to MassStorageHost demo to improve compatibility with more USB drives.
* Error status LEDs shown when device endpoint configuration fails to complete.Dean Camera2009-06-0813-138/+229
| | | | MIDI device demo no longer blocks if a note change event is sent while the endpoint is not ready.
* Converted Host mode demos to schedulerless. Fixed host mode broken due to ↵Dean Camera2009-06-0831-814/+386
| | | | earlier Start-of-frame event experiments.
* Converted device mode low-level demos to schedulerless.Dean Camera2009-06-0742-1130/+587
|
* Add master device Host demo makefile.Dean Camera2009-06-0517-2/+2557
| | | | Copy and convert incomplete Bluetooth Host demo to the library.
* Delete host mode demos from the root Host demos folder.Dean Camera2009-06-0564-25165/+0
|
* Copy existing Host mode demos to new ClassDriver and LowLevel subfolders.Dean Camera2009-06-05134-0/+50770
|
* Conversion of old incomplete SideShow demo to new APIs.Dean Camera2009-06-056-206/+221
|
* Add new Incomplete device subdirectory for work-in-progress demos. Add ↵Dean Camera2009-06-0513-0/+2447
| | | | incomplete SideShow demo.
* Remove outdated AVRStudio project files from demos, projects, bootloaders. ↵Dean Camera2009-06-0549-48/+31
| | | | Fix makefiles of ClassDriver device demos.
* Move new Class Driver powered demos to a new ClassDriver subdirectory, ↵Dean Camera2009-06-05273-0/+46078
| | | | re-add old low level demos to a LowLevel subdirectory.
* Added multiple Report ID support to the HID class driver. Removed OUT ↵Dean Camera2009-06-0516-77/+28
| | | | endpoint support from HID driver (all OUT reports are now processed through control requests) as a seperate endpoint had issues with determining the exact output report length.
* Fixed EVENT_USB_CDC_ControLineStateChanged() event not taking the CDC ↵Dean Camera2009-06-046-109/+61
| | | | | | | | interface structure as a parameter. Converted TestApp demo over to the new demo structure. More class driver documentation improvements.
* Fix Doxygen errors in demos.Dean Camera2009-06-045-2/+15
|
* Ensure all USB device class drivers have the same three main functions as ↵Dean Camera2009-06-043-0/+9
| | | | their interface for consistency.
* Minor documentation page updates.Dean Camera2009-06-0429-73/+498
| | | | | | | | Redocumented all device demos, now that they have changed over to the new USB class drivers. Added C linkage to class drivers for C++ support. Added prefixes to most of the class driver constants to prevent name clashes.
* Removed new Start of Frame event from the library; performance suffered far ↵Dean Camera2009-06-0214-28/+56
| | | | | | too much and it was only useful in one of the standard classes (HID). Altered HID demos to use the previous method of tracking millisecond periods via a hardware timer rather than the SOF events. Fixed MIDI class driver blocking on unread events to the host.
* Add MIDI class driver, update MIDI device demo to use the new USB class ↵Dean Camera2009-06-016-777/+107
| | | | driver. All device demos/projects have now been converted to the new library class drivers, although documentation is yet to be completed.
* Commit of new class abstraction APIs for all device demos other than the ↵Dean Camera2009-06-0167-4725/+1089
| | | | | | | | | | MIDI demo - not documented yet. Removed scheduler and memory allocation libraries. Added new EVENT_USB_StartOfFrame event in the library to indicate the start of each USB frame (when generated). Removed Tx interrupt from the USBtoSerial demo; now sends characters via polling to ensure more time for the Rx interrupt.
* Fix all device mode demos broken in the recent API changes.Dean Camera2009-05-265-32/+15
| | | | Change USBtoSerial Tx to polling-driven rather than interrupt driven, to ensure more time for the Rx interrupt to be serviced.
* Moved out each demos' functionality library files (e.g. Ring Buffer library) ↵Dean Camera2009-05-2245-26/+31
| | | | to /Lib directories for a better directory structure.
* Deleted StdDescriptors.c, renamed USB_GetDescriptor() to ↵Dean Camera2009-05-2252-102/+67
| | | | CALLBACK_USB_GetDescriptor, moved ConfigDescriptor.c/.h from the LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs.