diff options
Diffstat (limited to 'testhal/STM32/STM32L4xx/SPI-L3GD20')
-rw-r--r-- | testhal/STM32/STM32L4xx/SPI-L3GD20/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32L4xx/SPI-L3GD20/mcuconf.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/testhal/STM32/STM32L4xx/SPI-L3GD20/halconf.h b/testhal/STM32/STM32L4xx/SPI-L3GD20/halconf.h index 37466c5c2..e0e51673b 100644 --- a/testhal/STM32/STM32L4xx/SPI-L3GD20/halconf.h +++ b/testhal/STM32/STM32L4xx/SPI-L3GD20/halconf.h @@ -115,6 +115,13 @@ #endif
/**
+ * @brief Enables the QSPI subsystem.
+ */
+#if !defined(HAL_USE_QSPI) || defined(__DOXYGEN__)
+#define HAL_USE_QSPI FALSE
+#endif
+
+/**
* @brief Enables the RTC subsystem.
*/
#if !defined(HAL_USE_RTC) || defined(__DOXYGEN__)
diff --git a/testhal/STM32/STM32L4xx/SPI-L3GD20/mcuconf.h b/testhal/STM32/STM32L4xx/SPI-L3GD20/mcuconf.h index 4b99a9ce4..5125552ca 100644 --- a/testhal/STM32/STM32L4xx/SPI-L3GD20/mcuconf.h +++ b/testhal/STM32/STM32L4xx/SPI-L3GD20/mcuconf.h @@ -231,7 +231,7 @@ /*
* QSPI driver system settings.
*/
-#define STM32_QSPI_USE_QUADSPI1 TRUE
+#define STM32_QSPI_USE_QUADSPI1 FALSE
#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
/*
|