aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/DualCDC/DualCDC.c
Commit message (Collapse)AuthorAgeFilesLines
* 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-7/+7
| | | | | | | | 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.
* Add new HID_Device_MillisecondElapsed() function to the HID device Class ↵Dean Camera2009-07-301-5/+0
| | | | driver, to move the burden of managing the Idle period of each instance to the library and not the user application.
* Minor cleanups to DualCDC ClassDriver device demo for clarity.Dean Camera2009-07-301-4/+2
|
* 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.
* 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-19/+35
| | | | 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-11/+11
| | | | for similar host mode Class drivers.
* Move new Class Driver powered demos to a new ClassDriver subdirectory, ↵Dean Camera2009-06-051-0/+190
re-add old low level demos to a LowLevel subdirectory.