diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-10-02 19:02:08 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-10-02 19:02:08 +0000 |
commit | 261d0c7a7708b1aab34d57ca7933f6dcf330b1cd (patch) | |
tree | 4a06e9ab2f72ebd17bf7aa77f029c5bda91ca4a5 /testex | |
parent | 46e8f9e8c5c4f97d71162d0d1e9e0aaa118957ed (diff) | |
download | ChibiOS-261d0c7a7708b1aab34d57ca7933f6dcf330b1cd.tar.gz ChibiOS-261d0c7a7708b1aab34d57ca7933f6dcf330b1cd.tar.bz2 ChibiOS-261d0c7a7708b1aab34d57ca7933f6dcf330b1cd.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12317 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'testex')
-rw-r--r-- | testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h | 4 | ||||
-rw-r--r-- | testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h b/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h index 93c9a9a6d..6f608316a 100644 --- a/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h +++ b/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h @@ -128,7 +128,7 @@ * @brief Enables the QSPI subsystem.
*/
#if !defined(HAL_USE_QSPI) || defined(__DOXYGEN__)
-#define HAL_USE_QSPI TRUE
+#define HAL_USE_QSPI FALSE
#endif
/**
@@ -205,7 +205,7 @@ * @brief Enables the WSPI subsystem.
*/
#if !defined(HAL_USE_WSPI) || defined(__DOXYGEN__)
-#define HAL_USE_WSPI FALSE
+#define HAL_USE_WSPI TRUE
#endif
/*===========================================================================*/
diff --git a/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h b/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h index f0d261df5..d4eda14a7 100644 --- a/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h +++ b/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h @@ -324,4 +324,10 @@ */
#define STM32_WDG_USE_IWDG FALSE
+/*
+ * WSPI driver system settings.
+ */
+#define STM32_WSPI_USE_QUADSPI1 TRUE
+#define STM32_WSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
#endif /* MCUCONF_H */
|