Fixed some regressions.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12413 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
parent
9d6eb6ebf4
commit
bd22f71672
|
@ -257,6 +257,7 @@
|
||||||
/* The following checks are only required when there is a DMA able to
|
/* The following checks are only required when there is a DMA able to
|
||||||
reassign streams to different channels.*/
|
reassign streams to different channels.*/
|
||||||
#if STM32_ADVANCED_DMA
|
#if STM32_ADVANCED_DMA
|
||||||
|
|
||||||
/* Check on the presence of the DMA streams settings in mcuconf.h.*/
|
/* Check on the presence of the DMA streams settings in mcuconf.h.*/
|
||||||
#if STM32_I2C_USE_I2C1 && (!defined(STM32_I2C_I2C1_RX_DMA_STREAM) || \
|
#if STM32_I2C_USE_I2C1 && (!defined(STM32_I2C_I2C1_RX_DMA_STREAM) || \
|
||||||
!defined(STM32_I2C_I2C1_TX_DMA_STREAM))
|
!defined(STM32_I2C_I2C1_TX_DMA_STREAM))
|
||||||
|
@ -326,6 +327,7 @@
|
||||||
STM32_I2C4_TX_DMA_MSK)
|
STM32_I2C4_TX_DMA_MSK)
|
||||||
#error "invalid DMA stream associated to I2C4 TX"
|
#error "invalid DMA stream associated to I2C4 TX"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* STM32_ADVANCED_DMA */
|
#endif /* STM32_ADVANCED_DMA */
|
||||||
|
|
||||||
#if !defined(STM32_DMA_REQUIRED)
|
#if !defined(STM32_DMA_REQUIRED)
|
||||||
|
|
|
@ -301,6 +301,10 @@
|
||||||
#error "Invalid DMA priority assigned to SPI6"
|
#error "Invalid DMA priority assigned to SPI6"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* The following checks are only required when there is a DMA able to
|
||||||
|
reassign streams to different channels.*/
|
||||||
|
#if STM32_ADVANCED_DMA
|
||||||
|
|
||||||
/* Devices with DMAMUX require a different kind of check.*/
|
/* Devices with DMAMUX require a different kind of check.*/
|
||||||
#if STM32_DMA_SUPPORTS_DMAMUX
|
#if STM32_DMA_SUPPORTS_DMAMUX
|
||||||
|
|
||||||
|
@ -487,6 +491,8 @@
|
||||||
|
|
||||||
#endif /* !STM32_DMA_SUPPORTS_DMAMUX */
|
#endif /* !STM32_DMA_SUPPORTS_DMAMUX */
|
||||||
|
|
||||||
|
#endif /* STM32_ADVANCED_DMA */
|
||||||
|
|
||||||
#if !defined(STM32_DMA_REQUIRED)
|
#if !defined(STM32_DMA_REQUIRED)
|
||||||
#define STM32_DMA_REQUIRED
|
#define STM32_DMA_REQUIRED
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -149,6 +149,24 @@
|
||||||
#define STM32_GPT_USE_TIM14 FALSE
|
#define STM32_GPT_USE_TIM14 FALSE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief GPTD21 driver enable switch.
|
||||||
|
* @details If set to @p TRUE the support for GPTD21 is included.
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(STM32_GPT_USE_TIM21) || defined(__DOXYGEN__)
|
||||||
|
#define STM32_GPT_USE_TIM21 FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief GPTD22 driver enable switch.
|
||||||
|
* @details If set to @p TRUE the support for GPTD22 is included.
|
||||||
|
* @note The default is @p TRUE.
|
||||||
|
*/
|
||||||
|
#if !defined(STM32_GPT_USE_TIM22) || defined(__DOXYGEN__)
|
||||||
|
#define STM32_GPT_USE_TIM22 FALSE
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief GPTD1 interrupt priority level setting.
|
* @brief GPTD1 interrupt priority level setting.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue