aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/CDC/CDC.c
Commit message (Collapse)AuthorAgeFilesLines
* Minor code cleanups for clarity.Dean Camera2009-11-111-2/+2
|
* Added new stream creation function to the CDC Class drivers, to easily make ↵Dean Camera2009-11-101-22/+12
| | | | standard streams from CDC Class driver instances.
* Add optional double-banking support to the Device mode Class Drivers, on a ↵Dean Camera2009-11-061-7/+10
| | | | per-endpoint, per-interface level.
* Simplify CDC device demos, by directly assigning the string to transmit to ↵Dean Camera2009-08-061-14/+5
| | | | the pointer, rather than using an intermediatary table to hold all the possible transmit strings.
* Renamed all library events to properly seperate out Device and Host mode ↵Dean Camera2009-08-051-6/+6
| | | | | | | | 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.
* Fix to HID device mode Class driver, so that new reports are compared ↵Dean Camera2009-07-301-1/+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-301-0/+1
|
* Added standard stream example to the ClassDriver CDC device demo.Dean Camera2009-07-301-0/+22
| | | | Fix incorrect HWB button mask in the STK526 Buttons driver.
* State information for class drivers is now zeroed out during enumeration ↵Dean Camera2009-07-271-5/+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.
* Added new Benito project, a simple modified USB-to-Serial bridge for the ↵Dean Camera2009-07-231-2/+1
| | | | programming of AVRs using the official Arduino bootloader.
* Ensure that the USB_DeviceState variable is properly set upon wakeup events, ↵Dean Camera2009-07-231-1/+1
| | | | | | | | 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.
* Break device mode class driver interfaces into seperate config and state ↵Dean Camera2009-06-181-8/+16
| | | | 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.
* Changed to new device mode Class Driver function name prefixes to make way ↵Dean Camera2009-06-111-6/+6
| | | | for similar host mode Class drivers.
* Move new Class Driver powered demos to a new ClassDriver subdirectory, ↵Dean Camera2009-06-051-0/+157
re-add old low level demos to a LowLevel subdirectory.