aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
Commit message (Collapse)AuthorAgeFilesLines
* Added CDC_Device_Flush() command to the CDC Device mode class driver.Dean Camera2009-08-138-24/+2542
| | | | | | Minor updates to the unfinished SideShow demo for clarity. Added unfinished MassStorageHost class driver demo.
* Add CDC Host class driver EVENT_CDC_Host_ControLineStateChanged() event.Dean Camera2009-08-111-1/+1
| | | | Minor documentation fixes.
* Add new functions to the HID host class driver, refine HID interface ↵Dean Camera2009-08-114-3/+28
| | | | | | protocol matching. Remove stray state variable from the CDC host class driver.
* Fixed swapped paremeters in the HID state memory copy call while processing ↵Dean Camera2009-08-115-22/+7
| | | | | | | | | | a HID PUSH item in the HID report parser. Fixed memory corruption HID report parser when too many COLLECTION or PUSH items were processed. Make RNDIS device class driver include the CDC device class driver header, so that it can inherrit the required CDC functional descriptor macro. Make HID host class driver include the HID report parser.
* Fix issue in CDC device class driver where received data the size of the ↵Dean Camera2009-08-113-1/+12
| | | | | | | | data endpoint could lock up the driver. Further work on the new CDC and HID host mode class drivers. Reset changelog et. al. to reset development information for the new version currently under development.
* Cleanups to RNDIS device demos. Fix issue in RNDIS demos where the memory ↵Dean Camera2009-08-0715-59/+73
| | | | | | | | would become corrupted due to an incorrect bounds check when iterating over the port state table, causing random resets. Revert change to Template_Endpoint_Control_R.c, which broke control stream reads. Remove uneeded ADC.h include in the class driver AudioOutput demo.
* Make Benito ping-pong LED code more explicit, using masks of the TX and RX ↵Dean Camera2009-08-071-1/+1
| | | | | | LED masks for ping-pong toggle rather than the ambiguous LED "Busy" mask. Fix incorrect event name in MassStorageHost.c.
* Simplify CDC device demos, by directly assigning the string to transmit to ↵Dean Camera2009-08-064-64/+26
| | | | the pointer, rather than using an intermediatary table to hold all the possible transmit strings.
* Make Endpoint control transfers more reliable; early-abort when an ↵Dean Camera2009-08-0613-116/+118
| | | | | | incomplete packet is sent from the host (indicating end of transfer), add check for control reads to ensure that no more than wLength bytes are read from the interface. Condense sequential printf_P/puts_P calls to single printf_P calls for size and clarity.
* Fixed issue in USBtoSerial demos where the USART Rx line was not having its ↵Dean Camera2009-08-053-4/+3
| | | | | | | | pullup enabled at startup, leading to noise being received from the Rx pin when left floating. Removed unused relative Common.h header include from the DriverStubs board stub drivers. Fixed Benito programmer, use the correct LED functions where needed to ensure correct status display at all times.
* Make Control Endpoint stream transfers more reliable by adding in early ↵Dean Camera2009-08-0513-33/+43
| | | | | | | | aborts for unexpected new SETUP tokens, or unexpected status stage during control stream writes. Fix corruption in Device RNDIS demos TCP stack when too many connections attempted simultaneously, freezing the device when a page was re-fetched before the first connection was closed. Fix incorrect model compatibility information in the Host LowLevel demo overview text files.
* Changed over manual loops waiting for endpoints to be ready to use the ↵Dean Camera2009-08-057-77/+27
| | | | library Endpoint_WaitUntilReady() function for robustness. Fixes issues with terminated transfers on the host locking up USB devices.
* Fix incorrect Event call name in USBInterrupt.c.Dean Camera2009-08-052-5/+5
|
* Renamed all library events to properly seperate out Device and Host mode ↵Dean Camera2009-08-0581-477/+457
| | | | | | | | events. Changed the firing conditions for some events to ensure that events are fired by their own USB mode only. Remove VBUS events - not needed as the library takes care of VBUS detection and feedback on supported AVRs via the USB_Device_Connected and USB_Device_Disconnected events. Fixed incorrect Host state assignment in the incomplete BluetoothHost demo.
* Better fix for LowLevel CDC demo issue where sending data before the line ↵Dean Camera2009-08-043-49/+36
| | | | encoding is set will cause a failure of the host to open the port. Added fix to the DualCDC and USBtoSerial LowLevel demos.
* Fix issue with CDC device demos causing broken communications when the ↵Dean Camera2009-08-041-2/+17
| | | | device tries to send data before the host has set the line encoding.
* Fix build error in TestApp demo caused by previous commit.Dean Camera2009-08-021-1/+1
|
* Rename TOTAL_NUM_CONFIGURATIONS to FIXED_NUM_CONFIGURATIONS, to match the ↵Dean Camera2009-08-0256-60/+58
| | | | existing FIXED_CONTROL_ENDPOINT_SIZE compile time option. Add FIXED_NUM_CONFIGURATIONS to the descriptors of each project using the option.
* Make both LowLevel and ClassDriver AudioOutput demos always output to board ↵Dean Camera2009-08-024-42/+28
| | | | LEDs, regardless of output mode (removed AUDIO_OUT_LEDS compile time option from the demo). This allows for positive feedback to the user of audio activity regardless of output mode.
* Fixed the ClassDriver GenericHID demo so that it echoes back reports as ↵Dean Camera2009-07-313-7/+20
| | | | indicated in the demo overview.
* Fix demos based on the device mode HID class driver, as well as the driver ↵Dean Camera2009-07-3110-38/+90
| | | | itself. Changed HID device class driver to require the user to give a buffer and size to hold the previously generated report, for comparison purposes, and altered the prototype of the CALLBACK_HID_Device_CreateHIDReport() function so that reports can be sent to the host even if there are no apparent changes (useful for relative movements in mice, etc.).
* Add new HID_Device_MillisecondElapsed() function to the HID device Class ↵Dean Camera2009-07-306-24/+7
| | | | driver, to move the burden of managing the Idle period of each instance to the library and not the user application.
* Fix to HID device mode Class driver, so that new reports are compared ↵Dean Camera2009-07-306-13/+1
| | | | against the old, and updated reports made within the idle period are sent immediately to the host.
* Minor cleanups to DualCDC ClassDriver device demo for clarity.Dean Camera2009-07-302-4/+3
|
* Fix incorrect configuration in the ClassDriver AudioOutput demo.Dean Camera2009-07-309-42/+28
| | | | | | Make all audio device Class Driver functions require a reference to the Audio class instance, so that the endpoint size can be checked (and to standardize the APIs). Make LEDs more responsive in the AudioOutput device demos.
* Set all CDC and MassStorage device mode demos (LowLevel and ClassDriver) to ↵Dean Camera2009-07-3012-23/+38
| | | | use the USE_INTERNAL_SERIAL feature, add compile time warnings for devices which do not have an internal serial.
* Added standard stream example to the ClassDriver CDC device demo.Dean Camera2009-07-302-2/+24
| | | | Fix incorrect HWB button mask in the STK526 Buttons driver.
* Fix redefinition warning when USB_DEVICE_ONLY is set on an AVR which does ↵Dean Camera2009-07-301-0/+1
| | | | not support USB host mode.
* Added 404 errors to the RNDIS Webserver example.Dean Camera2009-07-292-38/+108
|
* Fixed report data alignment issues in the MouseHostWithParser demo when X ↵Dean Camera2009-07-281-6/+1
| | | | | | and Y movement data size is not a multiple of 8 bits. Fixed HID Report Descriptor Parser not correctly resetting internal states when a REPORT ID element is encountered.
* Change project makefiles so that the current target settings and not just ↵Dean Camera2009-07-2842-1561/+845
| | | | | | the board selection is printed during the build process. Fix warning in AudioOutput demos when AUDIO_OUT_STEREO output mode is selected.
* Make LowLevel AudioOutput demo work in the same way as the ClassDriver ↵Dean Camera2009-07-281-23/+12
| | | | AudioOutput demo for LEDs output.
* Changed AudioOutput demos to explicitly use timer 3 - the smaller USB AVRs ↵Dean Camera2009-07-285-114/+20
| | | | | | where timer 1 was needed instead did not have the endpoint size neccesary for good audio throughput anyway. Fix Benito documentation indicating erronously that the project used the HID USB class instead of the CDC class.
* State information for class drivers is now zeroed out during enumeration ↵Dean Camera2009-07-2715-75/+0
| | | | (both in device and host mode) to ensure sane values after each enumeration. User code should no longer explicitly set state information as this is no longer preserved.
* Collapse configuration descriptor size retrieval and size testing into a ↵Dean Camera2009-07-272-20/+6
| | | | single if statement within the new host mode class driver demos for clarity.
* Change Host mode class driver Pipe configuration routines -- better to let ↵Dean Camera2009-07-272-8/+48
| | | | the application fetch the configuration descriptors once, and then pass them to each class driver in turn.
* Add new MouseHost Class Driver demo, unfinished, to allow for better testing ↵Dean Camera2009-07-276-66/+2478
| | | | of the new prototype Host Mode Class Driver framework. Flesh out start of a HID class Host mode class driver.
* Corrected new Pipe_IsEndpointBound() function.Dean Camera2009-07-261-4/+4
| | | | Completed host CDC class driver enumeration code.
* Added new LEDs_ToggleLEDs() function to the Board LEDs driver.Dean Camera2009-07-242-8/+2
|
* Added new Benito project, a simple modified USB-to-Serial bridge for the ↵Dean Camera2009-07-232-3/+2
| | | | programming of AVRs using the official Arduino bootloader.
* Ensure that the USB_DeviceState variable is properly set upon wakeup events, ↵Dean Camera2009-07-233-3/+3
| | | | | | | | to the Addressed or Configured state as needed. Add explicit support for the AT90USB646 to the Teensy bootloader now that PJRC have released the Teensy++ board. Ensure unfinished SideShow demo uses an unallocated PID value within the LUFA range.
* Added new USB_DeviceState variable to keep track of the current Device mode ↵Dean Camera2009-07-2131-246/+290
| | | | | | | | | | | | USB state. Added new Endpoint_ClearStatusStage() convenience function to assist with the status stages of control transfers. Removed vague USB_IsConnected global - test USB_DeviceState or USB_HostState explicitly to gain previous functionality. Removed USB_IsSuspended global - test USB_DeviceState against DEVICE_STATE_Suspended instead. Fixed possible enumeration errors from spinloops which may fail to exit if the USB connection is severed before the exit condition becomes true.
* Add PrinterHost demo to the documentation.Dean Camera2009-07-211-0/+8
|
* Add extra tests to the MassStorage device demo and class driver for ↵Dean Camera2009-07-211-0/+2
| | | | validating command blocks from the host.
* Add explicit guards to all device mode tasks to ensure the device is ↵Dean Camera2009-07-2115-215/+244
| | | | connected and configured before running the task, to prevent any user tasks from locking up the main USB task if the device has not been properly configured.
* Simplify SideShow GUID compares via a macro.Dean Camera2009-07-203-5/+7
|
* Fixes to unfinished SideShow demo to re-enable correct building after ↵Dean Camera2009-07-201-1/+1
| | | | previous commit.
* Move unfinished SideShow source files to nested Lib directory for clarity.Dean Camera2009-07-209-4/+4
|
* Ensure control pipe is selected in the PrinterHost demo before trying to ↵Dean Camera2009-07-202-2/+7
| | | | send control requests.
* Change Doxygen configuration files to not produce 4096 directories for the ↵Dean Camera2009-07-2038-37/+39
| | | | | | documentation files -- the LUFA components do not generate enough documentation files to justify the large performance hit of creating so many directories. Fix missing Doxygen documentation in the Class Driver Mass Storage Device demo.