diff options
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 $@ |