aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorChristian Starkjohann <cs+github@obdev.at>2009-04-13 18:23:31 +0000
committerChristian Starkjohann <cs+github@obdev.at>2009-04-13 18:23:31 +0000
commit71450ab7bdd1e9bf0c6359f8ef91c9a6a84ab0c1 (patch)
tree179a02c4dec6fa3462906fc2ca8113311328add9 /examples
parent7d111aa4aed9621c02181c66d28fe99a9836e788 (diff)
downloadv-usb-71450ab7bdd1e9bf0c6359f8ef91c9a6a84ab0c1.tar.gz
v-usb-71450ab7bdd1e9bf0c6359f8ef91c9a6a84ab0c1.tar.bz2
v-usb-71450ab7bdd1e9bf0c6359f8ef91c9a6a84ab0c1.zip
- great renaming: project is now renamed from AVR-USB to V-USB
Diffstat (limited to 'examples')
-rw-r--r--examples/Readme.txt16
-rw-r--r--examples/drivertest/firmware/usbconfig.h4
-rw-r--r--examples/usbtool/usbtool.c2
3 files changed, 11 insertions, 11 deletions
diff --git a/examples/Readme.txt b/examples/Readme.txt
index 2e2f92f..82b10fe 100644
--- a/examples/Readme.txt
+++ b/examples/Readme.txt
@@ -1,4 +1,4 @@
-This is the Readme file for the directory "examples" of AVR-USB, a firmware-
+This is the Readme file for the directory "examples" of V-USB, a firmware-
only USB driver for AVR microcontrollers.
WHAT IS IN THIS DIRECTORY?
@@ -60,14 +60,14 @@ WHAT IS NOT DEMONSTRATED IN THESE EXAMPLES?
===========================================
These examples show only the most basic functionality. More elaborate
examples and real world applications showing more features of the driver are
-available at http://www.obdev.at/avrusb/projects.html. Most of these
+available at http://www.obdev.at/vusb/projects.html. Most of these
features are described in our documentation wiki at
-http://www.obdev.at/goto.php?t=avrusb-wiki.
+http://www.obdev.at/goto.php?t=vusb-wiki.
To mention just a few:
Using RC oscillator for system clock
- The 12.8 MHz and 16.5 MHz modules of AVR-USB have been designed to cope
+ The 12.8 MHz and 16.5 MHz modules of V-USB have been designed to cope
with clock rate deviations up to 1%. This allows an RC oscillator to be
used. Since the AVR's RC oscillator has a factory precision of only 10%,
it must be calibrated to an external reference. The EasyLogger example
@@ -75,7 +75,7 @@ Using RC oscillator for system clock
Dynamically generated descriptors
Sometimes you want to implement different typtes of USB device depending
- on a jumper or other condition. AVR-USB has a very flexible interface for
+ on a jumper or other condition. V-USB has a very flexible interface for
providing USB descriptors. See AVR-Doper for how to provide descriptors
at runtime.
@@ -86,17 +86,17 @@ Virtual COM port
see AVR-CDC.
Implementing suspend mode
- AVR-USB does not implement suspend mode. This means that the device does
+ V-USB does not implement suspend mode. This means that the device does
not reduce power consumption when the host goes into sleep mode. Device
firmware is free to implement suspend mode, though. See USB2LPT for an
example.
The projects mentioned above can best be found on
- http://www.obdev.at/avrusb/prjall.html
+ http://www.obdev.at/vusb/prjall.html
where all projects are listed.
----------------------------------------------------------------------------
-(c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH.
+(c) 2009 by OBJECTIVE DEVELOPMENT Software GmbH.
http://www.obdev.at/
diff --git a/examples/drivertest/firmware/usbconfig.h b/examples/drivertest/firmware/usbconfig.h
index 1198b46..a46ac37 100644
--- a/examples/drivertest/firmware/usbconfig.h
+++ b/examples/drivertest/firmware/usbconfig.h
@@ -1,5 +1,5 @@
/* Name: usbconfig.h
- * Project: AVR USB driver
+ * Project: V-USB for AVR(r) Microcontrollers
* Author: Christian Starkjohann
* Creation Date: 2005-04-01
* Tabsize: 4
@@ -14,7 +14,7 @@
/*
General Description:
This file is an example configuration (with inline documentation) for the USB
-driver. It configures AVR-USB for USB D+ connected to Port D bit 2 (which is
+driver. It configures V-USB for USB D+ connected to Port D bit 2 (which is
also hardware interrupt 0 on many devices) and USB D- to Port D bit 4. You may
wire the lines to any other port, as long as D+ is also wired to INT0 (or any
other hardware interrupt, as long as it is the highest level interrupt, see
diff --git a/examples/usbtool/usbtool.c b/examples/usbtool/usbtool.c
index 173f491..d9b1b3e 100644
--- a/examples/usbtool/usbtool.c
+++ b/examples/usbtool/usbtool.c
@@ -1,5 +1,5 @@
/* Name: usbtool.c
- * Project: AVR-USB examples, host side
+ * Project: V-USB examples, host side
* Author: Christian Starkjohann
* Creation Date: 2008-04-06
* Tabsize: 4