diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-07 04:35:59 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-07 04:35:59 +0000 |
commit | cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f (patch) | |
tree | e61fa3c8f3f1911a8200b988f106774a1b6780c8 /Demos/Host/LowLevel | |
parent | 7a9b3d3641e1bc97d2826b4865b3cedb11099e62 (diff) | |
download | lufa-cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f.tar.gz lufa-cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f.tar.bz2 lufa-cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f.zip |
Additional file renames and modifications to change CDC demos to VirtualSerial.
Diffstat (limited to 'Demos/Host/LowLevel')
-rw-r--r-- | Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf | 2 | ||||
-rw-r--r-- | Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c (renamed from Demos/Host/LowLevel/VirtualSerialHost/CDCHost.c) | 0 | ||||
-rw-r--r-- | Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h (renamed from Demos/Host/LowLevel/VirtualSerialHost/CDCHost.h) | 0 | ||||
-rw-r--r-- | Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.txt (renamed from Demos/Host/LowLevel/VirtualSerialHost/CDCHost.txt) | 0 | ||||
-rw-r--r-- | Demos/Host/LowLevel/VirtualSerialHost/makefile | 2 | ||||
-rw-r--r-- | Demos/Host/LowLevel/makefile | 8 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf b/Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf index 3f2e0b920..097bd05cc 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf +++ b/Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf @@ -25,7 +25,7 @@ DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
-PROJECT_NAME = "LUFA Library - CDC Host Demo"
+PROJECT_NAME = "LUFA Library - Virtual Serial Host Demo"
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
diff --git a/Demos/Host/LowLevel/VirtualSerialHost/CDCHost.c b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c index c4322587e..c4322587e 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/CDCHost.c +++ b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c diff --git a/Demos/Host/LowLevel/VirtualSerialHost/CDCHost.h b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h index b6d3a3cd4..b6d3a3cd4 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/CDCHost.h +++ b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h diff --git a/Demos/Host/LowLevel/VirtualSerialHost/CDCHost.txt b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.txt index 65999926c..65999926c 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/CDCHost.txt +++ b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.txt diff --git a/Demos/Host/LowLevel/VirtualSerialHost/makefile b/Demos/Host/LowLevel/VirtualSerialHost/makefile index 6c9c7c8f8..168b1b474 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/makefile +++ b/Demos/Host/LowLevel/VirtualSerialHost/makefile @@ -102,7 +102,7 @@ FORMAT = ihex # Target file name (without extension).
-TARGET = CDCHost
+TARGET = VirtualSerialHost
# Object files directory
diff --git a/Demos/Host/LowLevel/makefile b/Demos/Host/LowLevel/makefile index a69b25ba4..e81285678 100644 --- a/Demos/Host/LowLevel/makefile +++ b/Demos/Host/LowLevel/makefile @@ -14,9 +14,6 @@ # code. all: - make -C CDCHost clean - make -C CDCHost all - make -C GenericHIDHost clean make -C GenericHIDHost all @@ -47,8 +44,10 @@ all: make -C RNDISEthernetHost clean make -C RNDISEthernetHost all + make -C VirtualSerialHost clean + make -C VirtualSerialHost all + %: - make -C CDCHost $@ make -C GenericHIDHost $@ make -C JoystickHostWithParser $@ make -C KeyboardHost $@ @@ -60,3 +59,4 @@ all: make -C PrinterHost $@ make -C StillImageHost $@ make -C RNDISEthernetHost $@ + make -C VirtualSerialHost $@ |