aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32L4xx
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32/STM32L4xx')
-rw-r--r--testhal/STM32/STM32L4xx/ADC/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/ADC/mcuconf.h6
-rw-r--r--testhal/STM32/STM32L4xx/CAN/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/CAN/mcuconf.h6
-rw-r--r--testhal/STM32/STM32L4xx/EXT/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/EXT/mcuconf.h6
-rw-r--r--testhal/STM32/STM32L4xx/GPT-ADC/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/GPT-ADC/mcuconf.h6
-rw-r--r--testhal/STM32/STM32L4xx/I2C-LIS3MLD/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/I2C-LIS3MLD/mcuconf.h6
-rw-r--r--testhal/STM32/STM32L4xx/I2C-LSM6DS0/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/I2C-LSM6DS0/mcuconf.h6
-rw-r--r--testhal/STM32/STM32L4xx/IRQ_STORM/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/IRQ_STORM/mcuconf.h6
-rw-r--r--testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h2
-rw-r--r--testhal/STM32/STM32L4xx/SPI-L3GD20/halconf.h7
-rw-r--r--testhal/STM32/STM32L4xx/SPI-L3GD20/mcuconf.h2
17 files changed, 100 insertions, 2 deletions
diff --git a/testhal/STM32/STM32L4xx/ADC/halconf.h b/testhal/STM32/STM32L4xx/ADC/halconf.h
index 317e8643c..490ba8b77 100644
--- a/testhal/STM32/STM32L4xx/ADC/halconf.h
+++ b/testhal/STM32/STM32L4xx/ADC/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/ADC/mcuconf.h b/testhal/STM32/STM32L4xx/ADC/mcuconf.h
index 4436fa3d7..7e7b89666 100644
--- a/testhal/STM32/STM32L4xx/ADC/mcuconf.h
+++ b/testhal/STM32/STM32L4xx/ADC/mcuconf.h
@@ -229,6 +229,12 @@
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
/*
+ * QSPI driver system settings.
+ */
+#define STM32_QSPI_USE_QUADSPI1 FALSE
+#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
+/*
* SDC driver system settings.
*/
#define STM32_SDC_USE_SDMMC1 FALSE
diff --git a/testhal/STM32/STM32L4xx/CAN/halconf.h b/testhal/STM32/STM32L4xx/CAN/halconf.h
index 1ee860756..41b38ff52 100644
--- a/testhal/STM32/STM32L4xx/CAN/halconf.h
+++ b/testhal/STM32/STM32L4xx/CAN/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/CAN/mcuconf.h b/testhal/STM32/STM32L4xx/CAN/mcuconf.h
index 4ee64da52..c775e65c6 100644
--- a/testhal/STM32/STM32L4xx/CAN/mcuconf.h
+++ b/testhal/STM32/STM32L4xx/CAN/mcuconf.h
@@ -229,6 +229,12 @@
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
/*
+ * QSPI driver system settings.
+ */
+#define STM32_QSPI_USE_QUADSPI1 FALSE
+#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
+/*
* SDC driver system settings.
*/
#define STM32_SDC_USE_SDMMC1 FALSE
diff --git a/testhal/STM32/STM32L4xx/EXT/halconf.h b/testhal/STM32/STM32L4xx/EXT/halconf.h
index 7daca4786..be4ebe8dc 100644
--- a/testhal/STM32/STM32L4xx/EXT/halconf.h
+++ b/testhal/STM32/STM32L4xx/EXT/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/EXT/mcuconf.h b/testhal/STM32/STM32L4xx/EXT/mcuconf.h
index 43199e7de..686432776 100644
--- a/testhal/STM32/STM32L4xx/EXT/mcuconf.h
+++ b/testhal/STM32/STM32L4xx/EXT/mcuconf.h
@@ -229,6 +229,12 @@
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
/*
+ * QSPI driver system settings.
+ */
+#define STM32_QSPI_USE_QUADSPI1 FALSE
+#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
+/*
* SDC driver system settings.
*/
#define STM32_SDC_USE_SDMMC1 FALSE
diff --git a/testhal/STM32/STM32L4xx/GPT-ADC/halconf.h b/testhal/STM32/STM32L4xx/GPT-ADC/halconf.h
index 33df67e58..1d9449edd 100644
--- a/testhal/STM32/STM32L4xx/GPT-ADC/halconf.h
+++ b/testhal/STM32/STM32L4xx/GPT-ADC/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/GPT-ADC/mcuconf.h b/testhal/STM32/STM32L4xx/GPT-ADC/mcuconf.h
index 1097f78b3..7f1fe64cc 100644
--- a/testhal/STM32/STM32L4xx/GPT-ADC/mcuconf.h
+++ b/testhal/STM32/STM32L4xx/GPT-ADC/mcuconf.h
@@ -229,6 +229,12 @@
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
/*
+ * QSPI driver system settings.
+ */
+#define STM32_QSPI_USE_QUADSPI1 FALSE
+#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
+/*
* SDC driver system settings.
*/
#define STM32_SDC_USE_SDMMC1 FALSE
diff --git a/testhal/STM32/STM32L4xx/I2C-LIS3MLD/halconf.h b/testhal/STM32/STM32L4xx/I2C-LIS3MLD/halconf.h
index be911d195..168d3b3ff 100644
--- a/testhal/STM32/STM32L4xx/I2C-LIS3MLD/halconf.h
+++ b/testhal/STM32/STM32L4xx/I2C-LIS3MLD/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/I2C-LIS3MLD/mcuconf.h b/testhal/STM32/STM32L4xx/I2C-LIS3MLD/mcuconf.h
index 4a217233b..bd898f54d 100644
--- a/testhal/STM32/STM32L4xx/I2C-LIS3MLD/mcuconf.h
+++ b/testhal/STM32/STM32L4xx/I2C-LIS3MLD/mcuconf.h
@@ -229,6 +229,12 @@
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
/*
+ * QSPI driver system settings.
+ */
+#define STM32_QSPI_USE_QUADSPI1 FALSE
+#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
+/*
* SDC driver system settings.
*/
#define STM32_SDC_USE_SDMMC1 FALSE
diff --git a/testhal/STM32/STM32L4xx/I2C-LSM6DS0/halconf.h b/testhal/STM32/STM32L4xx/I2C-LSM6DS0/halconf.h
index be911d195..168d3b3ff 100644
--- a/testhal/STM32/STM32L4xx/I2C-LSM6DS0/halconf.h
+++ b/testhal/STM32/STM32L4xx/I2C-LSM6DS0/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/I2C-LSM6DS0/mcuconf.h b/testhal/STM32/STM32L4xx/I2C-LSM6DS0/mcuconf.h
index 4a217233b..bd898f54d 100644
--- a/testhal/STM32/STM32L4xx/I2C-LSM6DS0/mcuconf.h
+++ b/testhal/STM32/STM32L4xx/I2C-LSM6DS0/mcuconf.h
@@ -229,6 +229,12 @@
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
/*
+ * QSPI driver system settings.
+ */
+#define STM32_QSPI_USE_QUADSPI1 FALSE
+#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
+/*
* SDC driver system settings.
*/
#define STM32_SDC_USE_SDMMC1 FALSE
diff --git a/testhal/STM32/STM32L4xx/IRQ_STORM/halconf.h b/testhal/STM32/STM32L4xx/IRQ_STORM/halconf.h
index 841392b0a..94b147b44 100644
--- a/testhal/STM32/STM32L4xx/IRQ_STORM/halconf.h
+++ b/testhal/STM32/STM32L4xx/IRQ_STORM/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/IRQ_STORM/mcuconf.h b/testhal/STM32/STM32L4xx/IRQ_STORM/mcuconf.h
index cb61757e2..3183adc94 100644
--- a/testhal/STM32/STM32L4xx/IRQ_STORM/mcuconf.h
+++ b/testhal/STM32/STM32L4xx/IRQ_STORM/mcuconf.h
@@ -229,6 +229,12 @@
#define STM32_PWM_TIM8_IRQ_PRIORITY 7
/*
+ * QSPI driver system settings.
+ */
+#define STM32_QSPI_USE_QUADSPI1 FALSE
+#define STM32_QSPI_QUADSPI1_DMA_STREAM STM32_DMA_STREAM_ID(2, 7)
+
+/*
* SDC driver system settings.
*/
#define STM32_SDC_USE_SDMMC1 FALSE
diff --git a/testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h b/testhal/STM32/STM32L4xx/QSPI-N25Q128/halconf.h
index 5ab199774..e0e51673b 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 TRUE
+#define HAL_USE_QSPI FALSE
#endif
/**
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)
/*