diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-22 06:17:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-05-22 06:17:57 +0000 |
commit | b7ef7f49c9f6b4de962ae32776866bd1d5d59c3b (patch) | |
tree | 50f4fa5a28849f6f6e671f310956ae19479c4d05 /Demos/Host | |
parent | d0806c817cbf0c1b5c5362d1577eac6075c94dfc (diff) | |
download | lufa-b7ef7f49c9f6b4de962ae32776866bd1d5d59c3b.tar.gz lufa-b7ef7f49c9f6b4de962ae32776866bd1d5d59c3b.tar.bz2 lufa-b7ef7f49c9f6b4de962ae32776866bd1d5d59c3b.zip |
Moved out each demos' functionality library files (e.g. Ring Buffer library) to /Lib directories for a better directory structure.
Diffstat (limited to 'Demos/Host')
-rw-r--r-- | Demos/Host/MassStorageHost/Lib/MassStoreCommands.c (renamed from Demos/Host/MassStorageHost/MassStoreCommands.c) | 0 | ||||
-rw-r--r-- | Demos/Host/MassStorageHost/Lib/MassStoreCommands.h (renamed from Demos/Host/MassStorageHost/MassStoreCommands.h) | 0 | ||||
-rw-r--r-- | Demos/Host/MassStorageHost/Lib/SCSI_Codes.h (renamed from Demos/Host/MassStorageHost/SCSI_Codes.h) | 0 | ||||
-rw-r--r-- | Demos/Host/MassStorageHost/MassStorageHost.h | 3 | ||||
-rw-r--r-- | Demos/Host/MassStorageHost/makefile | 2 | ||||
-rw-r--r-- | Demos/Host/StillImageHost/Lib/PIMACodes.h (renamed from Demos/Host/StillImageHost/PIMACodes.h) | 0 | ||||
-rw-r--r-- | Demos/Host/StillImageHost/Lib/StillImageCommands.c (renamed from Demos/Host/StillImageHost/StillImageCommands.c) | 0 | ||||
-rw-r--r-- | Demos/Host/StillImageHost/Lib/StillImageCommands.h (renamed from Demos/Host/StillImageHost/StillImageCommands.h) | 0 | ||||
-rw-r--r-- | Demos/Host/StillImageHost/StillImageHost.h | 5 | ||||
-rw-r--r-- | Demos/Host/StillImageHost/makefile | 2 |
10 files changed, 7 insertions, 5 deletions
diff --git a/Demos/Host/MassStorageHost/MassStoreCommands.c b/Demos/Host/MassStorageHost/Lib/MassStoreCommands.c index 95aafca8c..95aafca8c 100644 --- a/Demos/Host/MassStorageHost/MassStoreCommands.c +++ b/Demos/Host/MassStorageHost/Lib/MassStoreCommands.c diff --git a/Demos/Host/MassStorageHost/MassStoreCommands.h b/Demos/Host/MassStorageHost/Lib/MassStoreCommands.h index 28f6a1561..28f6a1561 100644 --- a/Demos/Host/MassStorageHost/MassStoreCommands.h +++ b/Demos/Host/MassStorageHost/Lib/MassStoreCommands.h diff --git a/Demos/Host/MassStorageHost/SCSI_Codes.h b/Demos/Host/MassStorageHost/Lib/SCSI_Codes.h index 2b2213de2..2b2213de2 100644 --- a/Demos/Host/MassStorageHost/SCSI_Codes.h +++ b/Demos/Host/MassStorageHost/Lib/SCSI_Codes.h diff --git a/Demos/Host/MassStorageHost/MassStorageHost.h b/Demos/Host/MassStorageHost/MassStorageHost.h index 1646ad75e..6e1e5cd9e 100644 --- a/Demos/Host/MassStorageHost/MassStorageHost.h +++ b/Demos/Host/MassStorageHost/MassStorageHost.h @@ -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
diff --git a/Demos/Host/MassStorageHost/makefile b/Demos/Host/MassStorageHost/makefile index d4792ae40..f50f59887 100644 --- a/Demos/Host/MassStorageHost/makefile +++ b/Demos/Host/MassStorageHost/makefile @@ -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 \
diff --git a/Demos/Host/StillImageHost/PIMACodes.h b/Demos/Host/StillImageHost/Lib/PIMACodes.h index 38755aba8..38755aba8 100644 --- a/Demos/Host/StillImageHost/PIMACodes.h +++ b/Demos/Host/StillImageHost/Lib/PIMACodes.h diff --git a/Demos/Host/StillImageHost/StillImageCommands.c b/Demos/Host/StillImageHost/Lib/StillImageCommands.c index 8f05e48f4..8f05e48f4 100644 --- a/Demos/Host/StillImageHost/StillImageCommands.c +++ b/Demos/Host/StillImageHost/Lib/StillImageCommands.c diff --git a/Demos/Host/StillImageHost/StillImageCommands.h b/Demos/Host/StillImageHost/Lib/StillImageCommands.h index ad0ba55a2..ad0ba55a2 100644 --- a/Demos/Host/StillImageHost/StillImageCommands.h +++ b/Demos/Host/StillImageHost/Lib/StillImageCommands.h diff --git a/Demos/Host/StillImageHost/StillImageHost.h b/Demos/Host/StillImageHost/StillImageHost.h index 909ed89bc..b563767cc 100644 --- a/Demos/Host/StillImageHost/StillImageHost.h +++ b/Demos/Host/StillImageHost/StillImageHost.h @@ -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
diff --git a/Demos/Host/StillImageHost/makefile b/Demos/Host/StillImageHost/makefile index bcb036f25..8c1ca0b45 100644 --- a/Demos/Host/StillImageHost/makefile +++ b/Demos/Host/StillImageHost/makefile @@ -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 \
|