diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-03-08 19:52:44 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-03-08 19:52:44 +0000 |
commit | 2b35b5a2a5a9484332edebaca861a87910cf6715 (patch) | |
tree | 1216ba8ac63cec6ae618f52e061bf776dc726ea3 /testhal/STM32F4xx/SDC/Makefile | |
parent | 41895e5c3682637c17e42f3d78c195266721e6dd (diff) | |
download | ChibiOS-2b35b5a2a5a9484332edebaca861a87910cf6715.tar.gz ChibiOS-2b35b5a2a5a9484332edebaca861a87910cf6715.tar.bz2 ChibiOS-2b35b5a2a5a9484332edebaca861a87910cf6715.zip |
SDC. Added RTC support. Improved testhal.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/sdc_dev2@4031 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F4xx/SDC/Makefile')
-rwxr-xr-x | testhal/STM32F4xx/SDC/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testhal/STM32F4xx/SDC/Makefile b/testhal/STM32F4xx/SDC/Makefile index 73d23590d..ed147a37e 100755 --- a/testhal/STM32F4xx/SDC/Makefile +++ b/testhal/STM32F4xx/SDC/Makefile @@ -67,6 +67,7 @@ include $(CHIBIOS)/os/hal/platforms/STM32F4xx/platform.mk include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32F4xx/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
+include $(CHIBIOS)/ext/fatfs/fatfs.mk
#include $(CHIBIOS)/test/test.mk
# Define linker script file here
@@ -80,8 +81,11 @@ CSRC = $(PORTSRC) \ $(HALSRC) \
$(PLATFORMSRC) \
$(BOARDSRC) \
+ $(FATFSSRC) \
$(CHIBIOS)/os/various/evtimer.c \
$(CHIBIOS)/os/various/syscalls.c \
+ $(CHIBIOS)/os/various/shell.c \
+ $(CHIBIOS)/os/various/chprintf.c \
main.c
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
@@ -113,6 +117,7 @@ ASMSRC = $(PORTASM) INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
$(HALINC) $(PLATFORMINC) $(BOARDINC) \
+ $(CHIBIOS)/os/various $(FATFSINC) \
$(CHIBIOS)/os/various
#
|