git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@10026 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2017-01-11 10:09:53 +00:00
parent fd1a2f9553
commit 835bced1a3
2 changed files with 3 additions and 2 deletions

View File

@ -89,11 +89,11 @@
/* DAC attributes.*/
#define STM32_HAS_DAC1_CH1 TRUE
#define STM32_DAC1_CH1_DMA_MSK STM32_DMA_STREAM_ID_MSK(1, 5)
#define STM32_DAC1_CH1_DMA_CHN 0x00070000
#define STM32_DAC1_CH1_DMA_CHN 0x00700000
#define STM32_HAS_DAC1_CH2 TRUE
#define STM32_DAC1_CH2_DMA_MSK STM32_DMA_STREAM_ID_MSK(1, 6)
#define STM32_DAC1_CH2_DMA_CHN 0x00700000
#define STM32_DAC1_CH2_DMA_CHN 0x07000000
#define STM32_HAS_DAC2_CH1 FALSE
#define STM32_HAS_DAC2_CH2 FALSE

View File

@ -74,6 +74,7 @@
*** 16.1.7 ***
- HAL: Fixed protocol violation in usbDisableEndpointsI() API (bug #811).
- HAL: Fixed incorrect constants STM32_DAC1_CHx_DMA_CHN for STM32F7 (bug #810).
- HAL: Fixed redefined TIM in STM32F030 registry (bug #809).
- HAL: Fixed clock init in STM32F0x port which doesn't take in account
PLL_XTPRE and PREDIV_0 are hard-wired (bug #808).