git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9783 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Rocco Marco Guglielmi 2016-09-24 12:12:38 +00:00
parent 933bace9f3
commit ae31774f3e
2 changed files with 10 additions and 0 deletions

View File

@ -69,6 +69,14 @@
#define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 2
#define STM32_ADC_ADC1_DMA_STREAM STM32_DMA_STREAM_ID(1, 1)
/*
* DAC driver system settings.
*/
#define STM32_DAC_USE_DAC1_CH1 FALSE
#define STM32_DAC_DAC1_CH1_IRQ_PRIORITY 10
#define STM32_DAC_DAC1_CH1_DMA_PRIORITY 2
#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 3)
/*
* EXT driver system settings.
*/

View File

@ -126,6 +126,8 @@
- RT: Merged RT4.
- NIL: Merged NIL2.
- NIL: Added STM32F7 demo.
- HAL: Added DAC configs in RT-STM32F051-DISCOVERY\mcuconf.h (bug #777)
(backported to 16.1.6, 3.0.6).
- HAL: Fixed DAC driver not compiling on STM32F051 and some bitmasks related
to DAC disabling (bug #776)(backported to 16.1.6, 3.0.6).
- HAL: Fixed addition semicolon in cpp wrapper (bug #774)