forked from mfulz_github/qmk_firmware
		
	Moved out each demos' functionality library files (e.g. Ring Buffer library) to /Lib directories for a better directory structure.
This commit is contained in:
		
							parent
							
								
									d0806c817c
								
							
						
					
					
						commit
						b7ef7f49c9
					
				| @ -42,8 +42,9 @@ | ||||
| 		#include <avr/power.h> | ||||
| 
 | ||||
| 		#include "Descriptors.h" | ||||
| 		#include "SCSI.h" | ||||
| 		#include "DataflashManager.h" | ||||
| 
 | ||||
| 		#include "Lib/SCSI.h" | ||||
| 		#include "Lib/DataflashManager.h" | ||||
| 
 | ||||
| 		#include <LUFA/Version.h>                    // Library Version Information | ||||
| 		#include <LUFA/Drivers/USB/USB.h>            // USB Functionality | ||||
|  | ||||
| @ -125,8 +125,8 @@ LUFA_PATH = ../../.. | ||||
| # List C source files here. (C dependencies are automatically generated.)
 | ||||
| SRC = $(TARGET).c                                                 \
 | ||||
| 	  Descriptors.c                                               \
 | ||||
| 	  SCSI.c                                                      \
 | ||||
| 	  DataflashManager.c                                          \
 | ||||
| 	  Lib/SCSI.c                                                  \
 | ||||
| 	  Lib/DataflashManager.c                                      \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Scheduler/Scheduler.c                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c        \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c           \
 | ||||
|  | ||||
| @ -45,11 +45,12 @@ | ||||
| 		#include <stdio.h> | ||||
| 
 | ||||
| 		#include "Descriptors.h" | ||||
| 		#include "RNDIS.h" | ||||
| 		#include "Ethernet.h" | ||||
| 		#include "TCP.h" | ||||
| 		#include "ARP.h" | ||||
| 		#include "Webserver.h" | ||||
| 
 | ||||
| 		#include "Lib/RNDIS.h" | ||||
| 		#include "Lib/Ethernet.h" | ||||
| 		#include "Lib/TCP.h" | ||||
| 		#include "Lib/ARP.h" | ||||
| 		#include "Lib/Webserver.h" | ||||
| 
 | ||||
| 		#include <LUFA/Version.h>                         // Library Version Information | ||||
| 		#include <LUFA/Drivers/USB/USB.h>                 // USB Functionality | ||||
|  | ||||
| @ -125,16 +125,16 @@ LUFA_PATH = ../../.. | ||||
| # List C source files here. (C dependencies are automatically generated.)
 | ||||
| SRC = $(TARGET).c                                                 \
 | ||||
|       Descriptors.c                                               \
 | ||||
|       RNDIS.c                                                     \
 | ||||
| 	  Ethernet.c                                                  \
 | ||||
| 	  ProtocolDecoders.c                                          \
 | ||||
| 	  ICMP.c                                                      \
 | ||||
| 	  TCP.c                                                       \
 | ||||
| 	  UDP.c                                                       \
 | ||||
| 	  DHCP.c                                                      \
 | ||||
| 	  ARP.c                                                       \
 | ||||
| 	  IP.c                                                        \
 | ||||
| 	  Webserver.c                                                 \
 | ||||
|       Lib/RNDIS.c                                                 \
 | ||||
| 	  Lib/Ethernet.c                                              \
 | ||||
| 	  Lib/ProtocolDecoders.c                                      \
 | ||||
| 	  Lib/ICMP.c                                                  \
 | ||||
| 	  Lib/TCP.c                                                   \
 | ||||
| 	  Lib/UDP.c                                                   \
 | ||||
| 	  Lib/DHCP.c                                                  \
 | ||||
| 	  Lib/ARP.c                                                   \
 | ||||
| 	  Lib/IP.c                                                    \
 | ||||
| 	  Lib/Webserver.c                                             \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Scheduler/Scheduler.c                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/Peripheral/SerialStream.c         \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/Peripheral/Serial.c               \
 | ||||
|  | ||||
| @ -43,7 +43,8 @@ | ||||
| 		#include <avr/power.h> | ||||
| 
 | ||||
| 		#include "Descriptors.h" | ||||
| 		#include "RingBuff.h" | ||||
| 
 | ||||
| 		#include "Lib/RingBuff.h" | ||||
| 
 | ||||
| 		#include <LUFA/Version.h>                         // Library Version Information | ||||
| 		#include <LUFA/Drivers/USB/USB.h>                 // USB Functionality | ||||
|  | ||||
| @ -125,7 +125,7 @@ LUFA_PATH = ../../.. | ||||
| # List C source files here. (C dependencies are automatically generated.)
 | ||||
| SRC = $(TARGET).c                                                 \
 | ||||
| 	  Descriptors.c                                               \
 | ||||
| 	  RingBuff.c                                                  \
 | ||||
| 	  Lib/RingBuff.c                                              \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Scheduler/Scheduler.c                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c        \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c           \
 | ||||
|  | ||||
| @ -45,7 +45,8 @@ | ||||
| 		#include <ctype.h> | ||||
| 
 | ||||
| 		#include "ConfigDescriptor.h" | ||||
| 		#include "MassStoreCommands.h" | ||||
| 
 | ||||
| 		#include "Lib/MassStoreCommands.h" | ||||
| 
 | ||||
| 		#include <LUFA/Version.h>                                // Library Version Information | ||||
| 		#include <LUFA/Drivers/Misc/TerminalCodes.h>             // ANSI Terminal Escape Codes | ||||
|  | ||||
| @ -125,7 +125,7 @@ LUFA_PATH = ../../.. | ||||
| # List C source files here. (C dependencies are automatically generated.)
 | ||||
| SRC = $(TARGET).c                                                 \
 | ||||
| 	  ConfigDescriptor.c                                          \
 | ||||
| 	  MassStoreCommands.c                                         \
 | ||||
| 	  Lib/MassStoreCommands.c                                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Scheduler/Scheduler.c                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/Peripheral/SerialStream.c         \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/Peripheral/Serial.c               \
 | ||||
|  | ||||
| @ -43,8 +43,9 @@ | ||||
| 		#include <stdio.h> | ||||
| 		 | ||||
| 		#include "ConfigDescriptor.h" | ||||
| 		#include "PIMACodes.h" | ||||
| 		#include "StillImageCommands.h" | ||||
| 
 | ||||
| 		#include "Lib/PIMACodes.h" | ||||
| 		#include "Lib/StillImageCommands.h" | ||||
| 
 | ||||
| 		#include <LUFA/Drivers/Misc/TerminalCodes.h>             // ANSI Terminal Escape Codes | ||||
| 		#include <LUFA/Drivers/USB/USB.h>                        // USB Functionality | ||||
|  | ||||
| @ -124,7 +124,7 @@ LUFA_PATH = ../../.. | ||||
| # List C source files here. (C dependencies are automatically generated.)
 | ||||
| SRC = $(TARGET).c                                                 \
 | ||||
| 	  ConfigDescriptor.c                                          \
 | ||||
| 	  StillImageCommands.c                                        \
 | ||||
| 	  Lib/StillImageCommands.c                                    \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Scheduler/Scheduler.c                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/Peripheral/SerialStream.c         \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/Peripheral/Serial.c               \
 | ||||
|  | ||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| @ -28,6 +28,7 @@ | ||||
|   *  - Fixed incorrect PID value being used in the USBtoSerial project (thanks to Phill) | ||||
|   *  - Deleted StdDescriptors.c, renamed USB_GetDescriptor() to CALLBACK_USB_GetDescriptor, moved ConfigDescriptor.c/.h from the | ||||
|   *    LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs | ||||
|   *  - Moved out each demos' functionality library files (e.g. Ring Buffer library) to /Lib directories for a better directory structure | ||||
|   * | ||||
|   * | ||||
|   *  \section Sec_ChangeLog090510 Version 090510 | ||||
|  | ||||
| @ -46,8 +46,9 @@ | ||||
| 		#include <string.h> | ||||
| 
 | ||||
| 		#include "Descriptors.h" | ||||
| 		#include "MagstripeHW.h" | ||||
| 		#include "CircularBitBuffer.h" | ||||
| 
 | ||||
| 		#include "Lib/MagstripeHW.h" | ||||
| 		#include "Lib/CircularBitBuffer.h" | ||||
| 
 | ||||
| 		#include <LUFA/Version.h>                    // Library Version Information | ||||
| 		#include <LUFA/Drivers/USB/USB.h>            // USB Functionality | ||||
|  | ||||
| @ -125,7 +125,7 @@ LUFA_PATH = ../.. | ||||
| # List C source files here. (C dependencies are automatically generated.)
 | ||||
| SRC = $(TARGET).c                                                 \
 | ||||
| 	  Descriptors.c                                               \
 | ||||
| 	  CircularBitBuffer.c                                         \
 | ||||
| 	  Lib/CircularBitBuffer.c                                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Scheduler/Scheduler.c                     \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c        \
 | ||||
| 	  $(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/Endpoint.c           \
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Dean Camera
						Dean Camera