git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15163 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-12-01 11:00:32 +00:00
parent 3341afde93
commit 0acb78db9a
2 changed files with 3 additions and 0 deletions

View File

@ -98,6 +98,7 @@ static void wspi_lld_serve_interrupt(WSPIDriver *wspip) {
/* Clearing DMA interrupts here because the DMA ISR is not called on
transfer complete.*/
dmaStreamClearInterrupt(wspip->dma);
dmaStreamDisable(wspip->dma);
#if defined(STM32L471xx) || defined(STM32L475xx) || \
defined(STM32L476xx) || defined(STM32L486xx)

View File

@ -102,6 +102,8 @@
ARMv7-M and ARMv8-M-ML.
- NEW: On STM32WBxx added a check on STM32_LSI_ENABLE required by IWDG.
- NEW: Added SPIv2 support also to STM32WB and STM32WL.
- FIX: Fixed DMA stream not disabled in STM32 QUADSPIv1 driver (bug #1203)
(backported to 20.3.5)(backported to 21.11.1).
- FIX: Fixed I2C4 DMA streams for STM32L496 (bug #1202)
- FIX: Fixed STM32_SDMMC2_NUMBER on STM32H7 (bug #1201)
(backported to 20.3.5)(backported to 21.11.1).