L4xx: fixed DMA streams for I2C4 on L496

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15132 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
akscram 2021-11-25 03:17:58 +00:00
parent ed8f3e4404
commit 2feacb57b1
2 changed files with 3 additions and 2 deletions

View File

@ -1534,9 +1534,9 @@
#define STM32_I2C3_TX_DMA_CHN 0x00000030
#define STM32_HAS_I2C4 TRUE
#define STM32_I2C4_RX_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 2))
#define STM32_I2C4_RX_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1))
#define STM32_I2C4_RX_DMA_CHN 0x00000000
#define STM32_I2C4_TX_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 1))
#define STM32_I2C4_TX_DMA_MSK (STM32_DMA_STREAM_ID_MSK(2, 2))
#define STM32_I2C4_TX_DMA_CHN 0x00000000
/* QUADSPI attributes.*/

View File

@ -93,6 +93,7 @@
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 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).
- FIX: Fixed STM32G0B1 demo application hangs debuggers (bug #1200)