aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/StillImageHost
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-05-22 06:17:57 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-05-22 06:17:57 +0000
commitb7ef7f49c9f6b4de962ae32776866bd1d5d59c3b (patch)
tree50f4fa5a28849f6f6e671f310956ae19479c4d05 /Demos/Host/StillImageHost
parentd0806c817cbf0c1b5c5362d1577eac6075c94dfc (diff)
downloadlufa-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/StillImageHost')
-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.h5
-rw-r--r--Demos/Host/StillImageHost/makefile2
5 files changed, 4 insertions, 3 deletions
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 \