summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2011-11-19 20:02:14 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2011-11-19 20:02:14 +0100
commit307cfe164910eccc70c086c083595d637c7fb987 (patch)
treef9845dc9647518840faf469580f581cf65d9fced
parentc265553652444293f90189c7481fb7eb16f28115 (diff)
Moved driver related files to a subdirectory.
-rw-r--r--SConstruct4
-rw-r--r--drivers/bma150.h (renamed from bma150.h)0
-rw-r--r--drivers/gps.cpp (renamed from gps.cpp)0
-rw-r--r--drivers/gps.h (renamed from gps.h)0
-rw-r--r--drivers/itg3200.h (renamed from itg3200.h)0
-rw-r--r--drivers/ppmsum.cpp (renamed from ppmsum.cpp)0
-rw-r--r--drivers/ppmsum.h (renamed from ppmsum.h)0
-rw-r--r--drivers/xbee.cpp (renamed from xbee.cpp)0
-rw-r--r--drivers/xbee.h (renamed from xbee.h)0
9 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 72ac32d..d5544c1 100644
--- a/SConstruct
+++ b/SConstruct
@@ -18,13 +18,13 @@ env = Environment(
AR = 'arm-none-eabi-ar',
RANLIB = 'arm-none-eabi-ranlib',
- CPPPATH = ['os', 'hal'],
+ CPPPATH = ['os', 'hal', 'drivers'],
#LIBPATH = [],
LIBS = ['m'],
)
-sources = Glob('os/*.cpp') + Glob('hal/*.cpp') + Glob('*.cpp')
+sources = Glob('os/*.cpp') + Glob('hal/*.cpp') + Glob('drivers/*.cpp') + Glob('*.cpp')
firmware = env.Program('suzumebachi.elf', sources)
env.Depends(firmware, 'suzumebachi.ld')
diff --git a/bma150.h b/drivers/bma150.h
index 2e043ff..2e043ff 100644
--- a/bma150.h
+++ b/drivers/bma150.h
diff --git a/gps.cpp b/drivers/gps.cpp
index 1ae3684..1ae3684 100644
--- a/gps.cpp
+++ b/drivers/gps.cpp
diff --git a/gps.h b/drivers/gps.h
index c37fc8a..c37fc8a 100644
--- a/gps.h
+++ b/drivers/gps.h
diff --git a/itg3200.h b/drivers/itg3200.h
index 2e90f62..2e90f62 100644
--- a/itg3200.h
+++ b/drivers/itg3200.h
diff --git a/ppmsum.cpp b/drivers/ppmsum.cpp
index 2beaccb..2beaccb 100644
--- a/ppmsum.cpp
+++ b/drivers/ppmsum.cpp
diff --git a/ppmsum.h b/drivers/ppmsum.h
index 90bb860..90bb860 100644
--- a/ppmsum.h
+++ b/drivers/ppmsum.h
diff --git a/xbee.cpp b/drivers/xbee.cpp
index efee619..efee619 100644
--- a/xbee.cpp
+++ b/drivers/xbee.cpp
diff --git a/xbee.h b/drivers/xbee.h
index 59cf0cb..59cf0cb 100644
--- a/xbee.h
+++ b/drivers/xbee.h