Additional file renames and modifications to change CDC demos to VirtualSerial.

Dean Camera 16 years ago
parent 7a9b3d3641
commit cf22a744ec
  1. 2
      Demos/Device/ClassDriver/DualVirtualSerial/Doxygen.conf
  2. 0
      Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c
  3. 0
      Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.h
  4. 0
      Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.txt
  5. 0
      Demos/Device/ClassDriver/DualVirtualSerial/LUFA DualVirtualSerial.inf
  6. 2
      Demos/Device/ClassDriver/DualVirtualSerial/makefile
  7. 2
      Demos/Device/ClassDriver/VirtualSerial/Doxygen.conf
  8. 0
      Demos/Device/ClassDriver/VirtualSerial/LUFA VirtualSerial.inf
  9. 0
      Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.c
  10. 0
      Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.h
  11. 0
      Demos/Device/ClassDriver/VirtualSerial/VirtualSerial.txt
  12. 2
      Demos/Device/ClassDriver/VirtualSerial/makefile
  13. 2
      Demos/Device/ClassDriver/VirtualSerialMouse/Doxygen.conf
  14. 0
      Demos/Device/ClassDriver/VirtualSerialMouse/LUFA VirtualSerialMouse.inf
  15. 0
      Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.c
  16. 0
      Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.h
  17. 0
      Demos/Device/ClassDriver/VirtualSerialMouse/VirtualSerialMouse.txt
  18. 2
      Demos/Device/ClassDriver/VirtualSerialMouse/makefile
  19. 22
      Demos/Device/ClassDriver/makefile
  20. 2
      Demos/Device/LowLevel/DualVirtualSerial/Doxygen.conf
  21. 0
      Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.c
  22. 0
      Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.h
  23. 0
      Demos/Device/LowLevel/DualVirtualSerial/DualVirtualSerial.txt
  24. 0
      Demos/Device/LowLevel/DualVirtualSerial/LUFA DualVirtualSerial.inf
  25. 2
      Demos/Device/LowLevel/DualVirtualSerial/makefile
  26. 2
      Demos/Device/LowLevel/VirtualSerial/Doxygen.conf
  27. 0
      Demos/Device/LowLevel/VirtualSerial/LUFA VirtualSerial.inf
  28. 0
      Demos/Device/LowLevel/VirtualSerial/VirtualSerial.c
  29. 0
      Demos/Device/LowLevel/VirtualSerial/VirtualSerial.h
  30. 0
      Demos/Device/LowLevel/VirtualSerial/VirtualSerial.txt
  31. 2
      Demos/Device/LowLevel/VirtualSerial/makefile
  32. 14
      Demos/Device/LowLevel/makefile
  33. 2
      Demos/Host/ClassDriver/VirtualSerialHost/Doxygen.conf
  34. 0
      Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.c
  35. 0
      Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.h
  36. 0
      Demos/Host/ClassDriver/VirtualSerialHost/VirtualSerialHost.txt
  37. 2
      Demos/Host/ClassDriver/VirtualSerialHost/makefile
  38. 8
      Demos/Host/ClassDriver/makefile
  39. 2
      Demos/Host/LowLevel/VirtualSerialHost/Doxygen.conf
  40. 0
      Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c
  41. 0
      Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.h
  42. 0
      Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.txt
  43. 2
      Demos/Host/LowLevel/VirtualSerialHost/makefile
  44. 8
      Demos/Host/LowLevel/makefile
  45. 2
      LUFA.pnproj

@ -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 - Dual CDC Device Demo"
PROJECT_NAME = "LUFA Library - Dual Virtual Serial Device 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

@ -102,7 +102,7 @@ FORMAT = ihex
# Target file name (without extension).
TARGET = DualCDC
TARGET = DualVirtualSerial
# Object files directory

@ -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 Device Demo"
PROJECT_NAME = "LUFA Library - Virtual Serial Device 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

@ -102,7 +102,7 @@ FORMAT = ihex
# Target file name (without extension).
TARGET = CDC
TARGET = VirtualSerial
# Object files directory

@ -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 - Combined CDC and Mouse Device Demo"
PROJECT_NAME = "LUFA Library - Combined Virtual Serial and Mouse Device 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

@ -102,7 +102,7 @@ FORMAT = ihex
# Target file name (without extension).
TARGET = CDCMouse
TARGET = VirtualSerialMouse
# Object files directory

@ -20,14 +20,8 @@ all:
make -C AudioOutput clean
make -C AudioOutput all
make -C CDC clean
make -C CDC all
make -C CDCMouse clean
make -C CDCMouse all
make -C DualCDC clean
make -C DualCDC all
make -C DualVirtualSerial clean
make -C DualVirtualSerial all
make -C GenericHID clean
make -C GenericHID all
@ -56,12 +50,16 @@ all:
make -C RNDISEthernet clean
make -C RNDISEthernet all
make -C VirtualSerial clean
make -C VirtualSerial all
make -C VirtualSerialMouse clean
make -C VirtualSerialMouse all
%:
make -C AudioInput $@
make -C AudioOutput $@
make -C CDC $@
make -C CDCMouse $@
make -C DualCDC $@
make -C DualVirtualSerial $@
make -C GenericHID $@
make -C Joystick $@
make -C Keyboard $@
@ -71,3 +69,5 @@ all:
make -C MIDI $@
make -C Mouse $@
make -C RNDISEthernet $@
make -C VirtualSerial $@
make -C VirtualSerialMouse $@

@ -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 - Dual CDC Device Demo"
PROJECT_NAME = "LUFA Library - Dual Virtual Serial Device 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

@ -102,7 +102,7 @@ FORMAT = ihex
# Target file name (without extension).
TARGET = DualCDC
TARGET = DualVirtualSerial
# Object files directory

@ -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 Device Demo"
PROJECT_NAME = "LUFA Library - Virtual Serial Device 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

@ -102,7 +102,7 @@ FORMAT = ihex
# Target file name (without extension).
TARGET = CDC
TARGET = VirtualSerial
# Object files directory

@ -20,11 +20,8 @@ all:
make -C AudioOutput clean
make -C AudioOutput all
make -C CDC clean
make -C CDC all
make -C DualCDC clean
make -C DualCDC all
make -C DualVirtualSerial clean
make -C DualVirtualSerial all
make -C GenericHID clean
make -C GenericHID all
@ -50,11 +47,13 @@ all:
make -C RNDISEthernet clean
make -C RNDISEthernet all
make -C VirtualSerial clean
make -C VirtualSerial all
%:
make -C AudioInput $@
make -C AudioOutput $@
make -C CDC $@
make -C DualCDC $@
make -C DualVirtualSerial $@
make -C GenericHID $@
make -C Joystick $@
make -C Keyboard $@
@ -63,3 +62,4 @@ all:
make -C MIDI $@
make -C Mouse $@
make -C RNDISEthernet $@
make -C VirtualSerial $@

@ -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

@ -102,7 +102,7 @@ FORMAT = ihex
# Target file name (without extension).
TARGET = CDCHost
TARGET = VirtualSerialHost
# Object files directory

@ -14,9 +14,6 @@
# code.
all:
make -C CDCHost clean
make -C CDCHost all
make -C JoystickHostWithParser clean
make -C JoystickHostWithParser all
@ -46,9 +43,11 @@ all:
make -C StillImageHost clean
make -C StillImageHost all
make -C VirtualSerialHost clean
make -C VirtualSerialHost all
%:
make -C CDCHost $@
make -C JoystickHostWithParser $@
make -C KeyboardHost $@
make -C KeyboardHostWithParser $@
@ -58,3 +57,4 @@ all:
make -C PrinterHost $@
make -C RNDISEthernetHost $@
make -C StillImageHost $@
make -C VirtualSerialHost $@

@ -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

@ -102,7 +102,7 @@ FORMAT = ihex
# Target file name (without extension).
TARGET = CDCHost
TARGET = VirtualSerialHost
# Object files directory

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

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save