diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-05-16 11:14:20 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-05-16 11:14:20 +0000 |
commit | 81c35cb4919c12d164a675c0047848ad2bdcdee0 (patch) | |
tree | 81a217c8d7bdc1df73336f2290fc81f93f89a292 /testhal/STM32/STM32L4xx | |
parent | e555cd14ab74a2d258b43c86a016f01243c3cfce (diff) | |
download | ChibiOS-81c35cb4919c12d164a675c0047848ad2bdcdee0.tar.gz ChibiOS-81c35cb4919c12d164a675c0047848ad2bdcdee0.tar.bz2 ChibiOS-81c35cb4919c12d164a675c0047848ad2bdcdee0.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9490 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32L4xx')
-rw-r--r-- | testhal/STM32/STM32L4xx/QSPI-N25Q128/Makefile | 4 | ||||
-rw-r--r-- | testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/testhal/STM32/STM32L4xx/QSPI-N25Q128/Makefile b/testhal/STM32/STM32L4xx/QSPI-N25Q128/Makefile index 2ce900855..7a8a46ee0 100644 --- a/testhal/STM32/STM32L4xx/QSPI-N25Q128/Makefile +++ b/testhal/STM32/STM32L4xx/QSPI-N25Q128/Makefile @@ -98,7 +98,6 @@ include $(CHIBIOS)/os/hal/osal/rt/osal.mk include $(CHIBIOS)/os/rt/rt.mk
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
# Other files (optional).
-include $(CHIBIOS)/os/ex/ST/l3gd20.mk
include $(CHIBIOS)/os/hal/lib/streams/streams.mk
# Define linker script file here
@@ -113,7 +112,6 @@ CSRC = $(STARTUPSRC) \ $(HALSRC) \
$(PLATFORMSRC) \
$(BOARDSRC) \
- $(L3GD20SRC) \
$(STREAMSSRC) \
main.c
@@ -147,7 +145,7 @@ ASMXSRC = $(STARTUPASM) $(PORTASM) $(OSALASM) INCDIR = $(CHIBIOS)/os/license \
$(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \
- $(HALINC) $(PLATFORMINC) $(BOARDINC) $(L3GD20INC) \
+ $(HALINC) $(PLATFORMINC) $(BOARDINC) \
$(STREAMSINC) $(CHIBIOS)/os/various
#
diff --git a/testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h b/testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h index e0e51673b..5ab199774 100644 --- a/testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h +++ b/testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h @@ -118,7 +118,7 @@ * @brief Enables the QSPI subsystem.
*/
#if !defined(HAL_USE_QSPI) || defined(__DOXYGEN__)
-#define HAL_USE_QSPI FALSE
+#define HAL_USE_QSPI TRUE
#endif
/**
|