diff options
Diffstat (limited to 'testhal/STM32/STM32L4xx/CAN')
-rw-r--r-- | testhal/STM32/STM32L4xx/CAN/halconf.h | 7 | ||||
-rw-r--r-- | testhal/STM32/STM32L4xx/CAN/mcuconf.h | 6 |
2 files changed, 13 insertions, 0 deletions
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
|