diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2015-04-16 21:42:15 +0200 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2015-04-16 21:42:15 +0200 |
commit | e62aae545ae8c1047b863911f5a880dd075dbfe8 (patch) | |
tree | bfbea13e5882c50316cde73f01ba00bab3bff945 | |
parent | b0bba2957e303f610ed9cd60a760104c70cad51a (diff) | |
download | ChibiOS-Contrib-e62aae545ae8c1047b863911f5a880dd075dbfe8.tar.gz ChibiOS-Contrib-e62aae545ae8c1047b863911f5a880dd075dbfe8.tar.bz2 ChibiOS-Contrib-e62aae545ae8c1047b863911f5a880dd075dbfe8.zip |
Tiva. Fixed I2C testhal makefile.
-rw-r--r-- | testhal/TIVA/TM4C123x/I2C/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testhal/TIVA/TM4C123x/I2C/Makefile b/testhal/TIVA/TM4C123x/I2C/Makefile index dde090d..3aa487c 100644 --- a/testhal/TIVA/TM4C123x/I2C/Makefile +++ b/testhal/TIVA/TM4C123x/I2C/Makefile @@ -92,7 +92,6 @@ include $(CHIBIOS)/os/hal/osal/rt/osal.mk include $(CHIBIOS)/os/rt/rt.mk include $(CHIBIOS)/os/rt/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk # Other files (optional). -include $(CHIBIOS)/test/rt/test.mk # Define linker script file here LDSCRIPT= $(STARTUPLD)/TM4C123xH6.ld @@ -107,7 +106,8 @@ CSRC = $(STARTUPSRC) \ $(PLATFORMSRC) \ $(BOARDSRC) \ $(TESTSRC) \ - main.c + $(CHIBIOS)/os/hal/lib/streams/chprintf.c \ + main.c # C++ sources that can be compiled in ARM or THUMB mode depending on the global # setting. @@ -138,7 +138,7 @@ ASMSRC = $(STARTUPASM) $(PORTASM) $(OSALASM) INCDIR = $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \ $(HALINC) $(PLATFORMINC) $(BOARDINC) $(TESTINC) \ - $(CHIBIOS)/os/various + $(CHIBIOS)/os/various $(CHIBIOS)/os/hal/lib/streams # # Project, sources and paths |