diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-10-04 14:36:34 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-10-04 14:36:34 +0000 |
commit | 887ff945a901fac1fe18d6be7367b7f405a99e1a (patch) | |
tree | fcfb99a686af80265943664dbd1e2587c4e6623c /testex/STM32 | |
parent | 2dd28213f179c0a6e0a1f889ee19f803df53c42f (diff) | |
download | ChibiOS-887ff945a901fac1fe18d6be7367b7f405a99e1a.tar.gz ChibiOS-887ff945a901fac1fe18d6be7367b7f405a99e1a.tar.bz2 ChibiOS-887ff945a901fac1fe18d6be7367b7f405a99e1a.zip |
Flash infrastructure rework based on WSPI, not complete.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12320 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'testex/STM32')
-rw-r--r-- | testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h | 4 | ||||
-rw-r--r-- | testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h b/testex/STM32/STM32L4xx/QSPI-N25Q128/halconf.h index 6f608316a..93c9a9a6d 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 FALSE
+#define HAL_USE_QSPI TRUE
#endif
/**
@@ -205,7 +205,7 @@ * @brief Enables the WSPI subsystem.
*/
#if !defined(HAL_USE_WSPI) || defined(__DOXYGEN__)
-#define HAL_USE_WSPI TRUE
+#define HAL_USE_WSPI FALSE
#endif
/*===========================================================================*/
diff --git a/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h b/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h index d4eda14a7..c64e33b58 100644 --- a/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h +++ b/testex/STM32/STM32L4xx/QSPI-N25Q128/mcuconf.h @@ -327,7 +327,7 @@ /*
* WSPI driver system settings.
*/
-#define STM32_WSPI_USE_QUADSPI1 TRUE
+#define STM32_WSPI_USE_QUADSPI1 FALSE
#define STM32_WSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
#endif /* MCUCONF_H */
|