aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/MassStorage
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/Device/MassStorage
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/Device/MassStorage')
-rw-r--r--Demos/Device/MassStorage/Lib/DataflashManager.c (renamed from Demos/Device/MassStorage/DataflashManager.c)0
-rw-r--r--Demos/Device/MassStorage/Lib/DataflashManager.h (renamed from Demos/Device/MassStorage/DataflashManager.h)0
-rw-r--r--Demos/Device/MassStorage/Lib/SCSI.c (renamed from Demos/Device/MassStorage/SCSI.c)0
-rw-r--r--Demos/Device/MassStorage/Lib/SCSI.h (renamed from Demos/Device/MassStorage/SCSI.h)0
-rw-r--r--Demos/Device/MassStorage/Lib/SCSI_Codes.h (renamed from Demos/Device/MassStorage/SCSI_Codes.h)0
-rw-r--r--Demos/Device/MassStorage/MassStorage.h5
-rw-r--r--Demos/Device/MassStorage/makefile4
7 files changed, 5 insertions, 4 deletions
diff --git a/Demos/Device/MassStorage/DataflashManager.c b/Demos/Device/MassStorage/Lib/DataflashManager.c
index 4b624190f..4b624190f 100644
--- a/Demos/Device/MassStorage/DataflashManager.c
+++ b/Demos/Device/MassStorage/Lib/DataflashManager.c
diff --git a/Demos/Device/MassStorage/DataflashManager.h b/Demos/Device/MassStorage/Lib/DataflashManager.h
index 1332fd3a3..1332fd3a3 100644
--- a/Demos/Device/MassStorage/DataflashManager.h
+++ b/Demos/Device/MassStorage/Lib/DataflashManager.h
diff --git a/Demos/Device/MassStorage/SCSI.c b/Demos/Device/MassStorage/Lib/SCSI.c
index 5993a546d..5993a546d 100644
--- a/Demos/Device/MassStorage/SCSI.c
+++ b/Demos/Device/MassStorage/Lib/SCSI.c
diff --git a/Demos/Device/MassStorage/SCSI.h b/Demos/Device/MassStorage/Lib/SCSI.h
index d7693cafb..d7693cafb 100644
--- a/Demos/Device/MassStorage/SCSI.h
+++ b/Demos/Device/MassStorage/Lib/SCSI.h
diff --git a/Demos/Device/MassStorage/SCSI_Codes.h b/Demos/Device/MassStorage/Lib/SCSI_Codes.h
index 2b2213de2..2b2213de2 100644
--- a/Demos/Device/MassStorage/SCSI_Codes.h
+++ b/Demos/Device/MassStorage/Lib/SCSI_Codes.h
diff --git a/Demos/Device/MassStorage/MassStorage.h b/Demos/Device/MassStorage/MassStorage.h
index afe9872ea..cbd3cd931 100644
--- a/Demos/Device/MassStorage/MassStorage.h
+++ b/Demos/Device/MassStorage/MassStorage.h
@@ -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
diff --git a/Demos/Device/MassStorage/makefile b/Demos/Device/MassStorage/makefile
index 78abcfd07..93f895727 100644
--- a/Demos/Device/MassStorage/makefile
+++ b/Demos/Device/MassStorage/makefile
@@ -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 \