git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14098 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
cinsights 2021-03-28 10:13:00 +00:00
parent 49298277ef
commit ec2957f580
2 changed files with 6 additions and 4 deletions

View File

@ -599,13 +599,13 @@
#define STM32_HAS_CAN3 FALSE
/* DAC attributes.*/
#define STM32_HAS_DAC1_CH1 FALSE
#define STM32_HAS_DAC1_CH1 TRUE
#define STM32_DAC1_CH1_DMA_MSK (STM32_DMA_STREAM_ID_MSK(1, 2))
#define STM32_DAC1_CH1_DMA_CHN 0x00000090
#define STM32_HAS_DAC1_CH2 FALSE
#define STM32_HAS_DAC2_CH1 FALSE
#define STM32_HAS_DAC2_CH2 FALSE
#define STM32_HAS_DAC1_CH2 TRUE
#define STM32_HAS_DAC2_CH1 TRUE
#define STM32_HAS_DAC2_CH2 TRUE
/* DMA attributes.*/
#define STM32_ADVANCED_DMA TRUE

View File

@ -74,6 +74,8 @@
*****************************************************************************
*** 20.3.4 ***
- FIX: Fixed L0x2 series DAC not allocated in registry (bug #1150)
(backported to 19.1.5).
- FIX: Fixed inconsistent naming of SAI DMAMUX defines for STM32H7 (bug #1149).
- FIX: Fixed TIM register layout difference for STM32G4 series (bug #1148).
- FIX: Fixed STM32 QUADSPI driver problem when used with DMAv2 (bug #1147).