mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	Additional file renames and modifications to change CDC demos to VirtualSerial.
This commit is contained in:
		
							parent
							
								
									7a9b3d3641
								
							
						
					
					
						commit
						cf22a744ec
					
				| @ -25,7 +25,7 @@ DOXYFILE_ENCODING      = UTF-8 | |||||||
| # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | ||||||
| # by quotes) that should identify the project. | # 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.  | # The PROJECT_NUMBER tag can be used to enter a project or revision number.  | ||||||
| # This could be handy for archiving the generated documentation or  | # This could be handy for archiving the generated documentation or  | ||||||
|  | |||||||
| @ -102,7 +102,7 @@ FORMAT = ihex | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = DualCDC | TARGET = DualVirtualSerial | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Object files directory
 | # 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  | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | ||||||
| # by quotes) that should identify the project. | # 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.  | # The PROJECT_NUMBER tag can be used to enter a project or revision number.  | ||||||
| # This could be handy for archiving the generated documentation or  | # This could be handy for archiving the generated documentation or  | ||||||
|  | |||||||
| @ -102,7 +102,7 @@ FORMAT = ihex | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = CDC | TARGET = VirtualSerial | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Object files directory
 | # 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  | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | ||||||
| # by quotes) that should identify the project. | # 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.  | # The PROJECT_NUMBER tag can be used to enter a project or revision number.  | ||||||
| # This could be handy for archiving the generated documentation or  | # This could be handy for archiving the generated documentation or  | ||||||
|  | |||||||
| @ -102,7 +102,7 @@ FORMAT = ihex | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = CDCMouse | TARGET = VirtualSerialMouse | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Object files directory
 | # Object files directory
 | ||||||
|  | |||||||
| @ -20,14 +20,8 @@ all: | |||||||
| 	make -C AudioOutput clean | 	make -C AudioOutput clean | ||||||
| 	make -C AudioOutput all | 	make -C AudioOutput all | ||||||
| 
 | 
 | ||||||
| 	make -C CDC clean | 	make -C DualVirtualSerial clean | ||||||
| 	make -C CDC all | 	make -C DualVirtualSerial all | ||||||
| 	 |  | ||||||
| 	make -C CDCMouse clean |  | ||||||
| 	make -C CDCMouse all	 |  | ||||||
| 
 |  | ||||||
| 	make -C DualCDC clean |  | ||||||
| 	make -C DualCDC all |  | ||||||
| 
 | 
 | ||||||
| 	make -C GenericHID clean | 	make -C GenericHID clean | ||||||
| 	make -C GenericHID all | 	make -C GenericHID all | ||||||
| @ -56,12 +50,16 @@ all: | |||||||
| 	make -C RNDISEthernet clean | 	make -C RNDISEthernet clean | ||||||
| 	make -C RNDISEthernet all | 	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 AudioInput $@ | ||||||
| 	make -C AudioOutput $@ | 	make -C AudioOutput $@ | ||||||
| 	make -C CDC $@ | 	make -C DualVirtualSerial $@ | ||||||
| 	make -C CDCMouse $@ |  | ||||||
| 	make -C DualCDC $@ |  | ||||||
| 	make -C GenericHID $@ | 	make -C GenericHID $@ | ||||||
| 	make -C Joystick $@ | 	make -C Joystick $@ | ||||||
| 	make -C Keyboard $@ | 	make -C Keyboard $@ | ||||||
| @ -71,3 +69,5 @@ all: | |||||||
| 	make -C MIDI $@ | 	make -C MIDI $@ | ||||||
| 	make -C Mouse $@ | 	make -C Mouse $@ | ||||||
| 	make -C RNDISEthernet $@ | 	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  | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | ||||||
| # by quotes) that should identify the project. | # 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.  | # The PROJECT_NUMBER tag can be used to enter a project or revision number.  | ||||||
| # This could be handy for archiving the generated documentation or  | # This could be handy for archiving the generated documentation or  | ||||||
|  | |||||||
| @ -102,7 +102,7 @@ FORMAT = ihex | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = DualCDC | TARGET = DualVirtualSerial | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Object files directory
 | # 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  | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | ||||||
| # by quotes) that should identify the project. | # 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.  | # The PROJECT_NUMBER tag can be used to enter a project or revision number.  | ||||||
| # This could be handy for archiving the generated documentation or  | # This could be handy for archiving the generated documentation or  | ||||||
|  | |||||||
| @ -102,7 +102,7 @@ FORMAT = ihex | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = CDC | TARGET = VirtualSerial | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Object files directory
 | # Object files directory
 | ||||||
|  | |||||||
| @ -20,11 +20,8 @@ all: | |||||||
| 	make -C AudioOutput clean | 	make -C AudioOutput clean | ||||||
| 	make -C AudioOutput all | 	make -C AudioOutput all | ||||||
| 
 | 
 | ||||||
| 	make -C CDC clean | 	make -C DualVirtualSerial clean | ||||||
| 	make -C CDC all | 	make -C DualVirtualSerial all | ||||||
| 
 |  | ||||||
| 	make -C DualCDC clean |  | ||||||
| 	make -C DualCDC all |  | ||||||
| 
 | 
 | ||||||
| 	make -C GenericHID clean | 	make -C GenericHID clean | ||||||
| 	make -C GenericHID all | 	make -C GenericHID all | ||||||
| @ -50,11 +47,13 @@ all: | |||||||
| 	make -C RNDISEthernet clean | 	make -C RNDISEthernet clean | ||||||
| 	make -C RNDISEthernet all | 	make -C RNDISEthernet all | ||||||
| 
 | 
 | ||||||
|  | 	make -C VirtualSerial clean | ||||||
|  | 	make -C VirtualSerial all | ||||||
|  | 
 | ||||||
| %: | %: | ||||||
| 	make -C AudioInput $@ | 	make -C AudioInput $@ | ||||||
| 	make -C AudioOutput $@ | 	make -C AudioOutput $@ | ||||||
| 	make -C CDC $@ | 	make -C DualVirtualSerial $@ | ||||||
| 	make -C DualCDC $@ |  | ||||||
| 	make -C GenericHID $@ | 	make -C GenericHID $@ | ||||||
| 	make -C Joystick $@ | 	make -C Joystick $@ | ||||||
| 	make -C Keyboard $@ | 	make -C Keyboard $@ | ||||||
| @ -63,3 +62,4 @@ all: | |||||||
| 	make -C MIDI $@ | 	make -C MIDI $@ | ||||||
| 	make -C Mouse $@ | 	make -C Mouse $@ | ||||||
| 	make -C RNDISEthernet $@ | 	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  | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | ||||||
| # by quotes) that should identify the project. | # 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.  | # The PROJECT_NUMBER tag can be used to enter a project or revision number.  | ||||||
| # This could be handy for archiving the generated documentation or  | # This could be handy for archiving the generated documentation or  | ||||||
|  | |||||||
| @ -102,7 +102,7 @@ FORMAT = ihex | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = CDCHost | TARGET = VirtualSerialHost | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Object files directory
 | # Object files directory
 | ||||||
|  | |||||||
| @ -14,9 +14,6 @@ | |||||||
| # code.
 | # code.
 | ||||||
| 
 | 
 | ||||||
| all: | all: | ||||||
| 	make -C CDCHost clean |  | ||||||
| 	make -C CDCHost all	 |  | ||||||
| 
 |  | ||||||
| 	make -C JoystickHostWithParser clean | 	make -C JoystickHostWithParser clean | ||||||
| 	make -C JoystickHostWithParser all	 | 	make -C JoystickHostWithParser all	 | ||||||
| 
 | 
 | ||||||
| @ -47,8 +44,10 @@ all: | |||||||
| 	make -C StillImageHost clean | 	make -C StillImageHost clean | ||||||
| 	make -C StillImageHost all | 	make -C StillImageHost all | ||||||
| 
 | 
 | ||||||
|  | 	make -C VirtualSerialHost clean | ||||||
|  | 	make -C VirtualSerialHost all	 | ||||||
|  | 	 | ||||||
| %: | %: | ||||||
| 	make -C CDCHost $@ |  | ||||||
| 	make -C JoystickHostWithParser $@ | 	make -C JoystickHostWithParser $@ | ||||||
| 	make -C KeyboardHost $@ | 	make -C KeyboardHost $@ | ||||||
| 	make -C KeyboardHostWithParser $@ | 	make -C KeyboardHostWithParser $@ | ||||||
| @ -58,3 +57,4 @@ all: | |||||||
| 	make -C PrinterHost $@ | 	make -C PrinterHost $@ | ||||||
| 	make -C RNDISEthernetHost $@ | 	make -C RNDISEthernetHost $@ | ||||||
| 	make -C StillImageHost $@ | 	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  | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded  | ||||||
| # by quotes) that should identify the project. | # 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.  | # The PROJECT_NUMBER tag can be used to enter a project or revision number.  | ||||||
| # This could be handy for archiving the generated documentation or  | # This could be handy for archiving the generated documentation or  | ||||||
|  | |||||||
| @ -102,7 +102,7 @@ FORMAT = ihex | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Target file name (without extension).
 | # Target file name (without extension).
 | ||||||
| TARGET = CDCHost | TARGET = VirtualSerialHost | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| # Object files directory
 | # Object files directory
 | ||||||
|  | |||||||
| @ -14,9 +14,6 @@ | |||||||
| # code.
 | # code.
 | ||||||
| 
 | 
 | ||||||
| all: | all: | ||||||
| 	make -C CDCHost clean |  | ||||||
| 	make -C CDCHost all |  | ||||||
| 
 |  | ||||||
| 	make -C GenericHIDHost clean | 	make -C GenericHIDHost clean | ||||||
| 	make -C GenericHIDHost all | 	make -C GenericHIDHost all | ||||||
| 
 | 
 | ||||||
| @ -47,8 +44,10 @@ all: | |||||||
| 	make -C RNDISEthernetHost clean | 	make -C RNDISEthernetHost clean | ||||||
| 	make -C RNDISEthernetHost all | 	make -C RNDISEthernetHost all | ||||||
| 
 | 
 | ||||||
|  | 	make -C VirtualSerialHost clean | ||||||
|  | 	make -C VirtualSerialHost all | ||||||
|  | 
 | ||||||
| %: | %: | ||||||
| 	make -C CDCHost $@ |  | ||||||
| 	make -C GenericHIDHost $@ | 	make -C GenericHIDHost $@ | ||||||
| 	make -C JoystickHostWithParser $@ | 	make -C JoystickHostWithParser $@ | ||||||
| 	make -C KeyboardHost $@ | 	make -C KeyboardHost $@ | ||||||
| @ -60,3 +59,4 @@ all: | |||||||
| 	make -C PrinterHost $@ | 	make -C PrinterHost $@ | ||||||
| 	make -C StillImageHost $@ | 	make -C StillImageHost $@ | ||||||
| 	make -C RNDISEthernetHost $@ | 	make -C RNDISEthernetHost $@ | ||||||
|  | 	make -C VirtualSerialHost $@ | ||||||
|  | |||||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Dean Camera
						Dean Camera