From 5cdc29616ceed081e76de2439ed03a0e6c3a7dd1 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Thu, 10 Jan 2013 21:09:53 +0000 Subject: Update and add missing Atmel Studio project description XML files. --- Demos/Device/LowLevel/AudioInput/asf.xml | 39 +++++++++++++++++ Demos/Device/LowLevel/AudioOutput/asf.xml | 37 ++++++++++++++++ Demos/Device/LowLevel/DualVirtualSerial/asf.xml | 38 +++++++++++++++++ Demos/Device/LowLevel/GenericHID/asf.xml | 36 ++++++++++++++++ Demos/Device/LowLevel/Joystick/asf.xml | 36 ++++++++++++++++ Demos/Device/LowLevel/Keyboard/asf.xml | 37 ++++++++++++++++ Demos/Device/LowLevel/KeyboardMouse/asf.xml | 37 ++++++++++++++++ Demos/Device/LowLevel/MIDI/asf.xml | 37 ++++++++++++++++ Demos/Device/LowLevel/MassStorage/asf.xml | 41 ++++++++++++++++++ Demos/Device/LowLevel/Mouse/asf.xml | 37 ++++++++++++++++ Demos/Device/LowLevel/RNDISEthernet/asf.xml | 57 +++++++++++++++++++++++++ Demos/Device/LowLevel/VirtualSerial/asf.xml | 39 +++++++++++++++++ 12 files changed, 471 insertions(+) create mode 100644 Demos/Device/LowLevel/AudioInput/asf.xml create mode 100644 Demos/Device/LowLevel/AudioOutput/asf.xml create mode 100644 Demos/Device/LowLevel/DualVirtualSerial/asf.xml create mode 100644 Demos/Device/LowLevel/GenericHID/asf.xml create mode 100644 Demos/Device/LowLevel/Joystick/asf.xml create mode 100644 Demos/Device/LowLevel/Keyboard/asf.xml create mode 100644 Demos/Device/LowLevel/KeyboardMouse/asf.xml create mode 100644 Demos/Device/LowLevel/MIDI/asf.xml create mode 100644 Demos/Device/LowLevel/MassStorage/asf.xml create mode 100644 Demos/Device/LowLevel/Mouse/asf.xml create mode 100644 Demos/Device/LowLevel/RNDISEthernet/asf.xml create mode 100644 Demos/Device/LowLevel/VirtualSerial/asf.xml (limited to 'Demos/Device/LowLevel') diff --git a/Demos/Device/LowLevel/AudioInput/asf.xml b/Demos/Device/LowLevel/AudioInput/asf.xml new file mode 100644 index 000000000..af8c9c260 --- /dev/null +++ b/Demos/Device/LowLevel/AudioInput/asf.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + Audio 1.0 Input device demo, implementing a basic USB microphone. + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/AudioOutput/asf.xml b/Demos/Device/LowLevel/AudioOutput/asf.xml new file mode 100644 index 000000000..50c26ad44 --- /dev/null +++ b/Demos/Device/LowLevel/AudioOutput/asf.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + Audio 1.0 Output device demo, implementing a basic USB speaker. + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/DualVirtualSerial/asf.xml b/Demos/Device/LowLevel/DualVirtualSerial/asf.xml new file mode 100644 index 000000000..b848280e9 --- /dev/null +++ b/Demos/Device/LowLevel/DualVirtualSerial/asf.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + Dual Virtual Serial (CDC) demo, implementing a pair of virtual serial port interfaces. + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/GenericHID/asf.xml b/Demos/Device/LowLevel/GenericHID/asf.xml new file mode 100644 index 000000000..9470d44cf --- /dev/null +++ b/Demos/Device/LowLevel/GenericHID/asf.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + Generic HID device demo, implementing a device whose LEDs can be controlled via HID messages from the host. + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/Joystick/asf.xml b/Demos/Device/LowLevel/Joystick/asf.xml new file mode 100644 index 000000000..f695dd98c --- /dev/null +++ b/Demos/Device/LowLevel/Joystick/asf.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + Joystick HID device demo, implementing a basic USB joystick that can send movement information to the host. + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/Keyboard/asf.xml b/Demos/Device/LowLevel/Keyboard/asf.xml new file mode 100644 index 000000000..3b89b868b --- /dev/null +++ b/Demos/Device/LowLevel/Keyboard/asf.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + Keyboard HID device demo, implementing a basic USB keyboard that can send key press information to the host. + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/KeyboardMouse/asf.xml b/Demos/Device/LowLevel/KeyboardMouse/asf.xml new file mode 100644 index 000000000..4ff2fb8bf --- /dev/null +++ b/Demos/Device/LowLevel/KeyboardMouse/asf.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + Keyboard and Mouse HID device demo, implementing a basic USB keyboard and mouse using a pair of HID interfaces. + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/MIDI/asf.xml b/Demos/Device/LowLevel/MIDI/asf.xml new file mode 100644 index 000000000..e70fd4eeb --- /dev/null +++ b/Demos/Device/LowLevel/MIDI/asf.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + MIDI device demo, implementing a basic USB MIDI device that can send messages to the host. + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/MassStorage/asf.xml b/Demos/Device/LowLevel/MassStorage/asf.xml new file mode 100644 index 000000000..689d00a99 --- /dev/null +++ b/Demos/Device/LowLevel/MassStorage/asf.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + Mass Storage device demo, implementing a basic USB storage disk using a Dataflash memory IC. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/Mouse/asf.xml b/Demos/Device/LowLevel/Mouse/asf.xml new file mode 100644 index 000000000..65f27f9e2 --- /dev/null +++ b/Demos/Device/LowLevel/Mouse/asf.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + Mouse device demo, implementing a basic USB mouse device that can send movement information to the host. + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/RNDISEthernet/asf.xml b/Demos/Device/LowLevel/RNDISEthernet/asf.xml new file mode 100644 index 000000000..c14fe00d3 --- /dev/null +++ b/Demos/Device/LowLevel/RNDISEthernet/asf.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + Microsoft RNDIS Ethernet networking device demo, implementing a basic HTTP webserver. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Demos/Device/LowLevel/VirtualSerial/asf.xml b/Demos/Device/LowLevel/VirtualSerial/asf.xml new file mode 100644 index 000000000..122716ef8 --- /dev/null +++ b/Demos/Device/LowLevel/VirtualSerial/asf.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + Virtual Serial device demo, implementing a virtual serial channel between the host PC and the device. + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3