diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-11 14:54:18 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-11 14:54:18 +0000 |
commit | b89d451592f0bd9877e6e2bd3ca29cfb4d5ee9d2 (patch) | |
tree | b94a576fb44e38ba91167bbffc9782e52a7af4d3 /testhal/STM32/STM32F4xx/IRQ_STORM/Makefile | |
parent | 5a4986fa34ba272a9fce83fb33eef99470c55fd4 (diff) | |
download | ChibiOS-b89d451592f0bd9877e6e2bd3ca29cfb4d5ee9d2.tar.gz ChibiOS-b89d451592f0bd9877e6e2bd3ca29cfb4d5ee9d2.tar.bz2 ChibiOS-b89d451592f0bd9877e6e2bd3ca29cfb4d5ee9d2.zip |
STM32F4 IRQ Storm application updated.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7883 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F4xx/IRQ_STORM/Makefile')
-rw-r--r-- | testhal/STM32/STM32F4xx/IRQ_STORM/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F4xx/IRQ_STORM/Makefile b/testhal/STM32/STM32F4xx/IRQ_STORM/Makefile index 3fec9da36..7e5004cd0 100644 --- a/testhal/STM32/STM32F4xx/IRQ_STORM/Makefile +++ b/testhal/STM32/STM32F4xx/IRQ_STORM/Makefile @@ -107,6 +107,9 @@ CSRC = $(STARTUPSRC) \ $(PLATFORMSRC) \
$(BOARDSRC) \
$(TESTSRC) \
+ $(CHIBIOS)/os/hal/lib/streams/memstreams.c \
+ $(CHIBIOS)/os/hal/lib/streams/chprintf.c \
+ $(CHIBIOS)/testhal/common/irq_storm.c \
main.c
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
@@ -138,7 +141,9 @@ ASMSRC = $(STARTUPASM) $(PORTASM) $(OSALASM) INCDIR = $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \
$(HALINC) $(PLATFORMINC) $(BOARDINC) $(TESTINC) \
- $(CHIBIOS)/os/various
+ $(CHIBIOS)/os/hal/lib/streams \
+ $(CHIBIOS)/os/various \
+ $(CHIBIOS)/testhal/common
#
# Project, sources and paths
|