arch/arm/src/stm32/chip/stm32_dma_v1.h: Add missing DMA channel configuration. arch/arm/src/stm32/stm32_adc.c: Fixes a typo.

This commit is contained in:
Gregory Nutt 2018-12-20 10:56:42 -06:00
parent bf6f44dec8
commit 101740a626
2 changed files with 2 additions and 1 deletions

View File

@ -475,6 +475,7 @@
# define DMACHAN_TIM1_CH2_1 STM32_DMA1_CHAN3 # define DMACHAN_TIM1_CH2_1 STM32_DMA1_CHAN3
# define DMACHAN_TIM3_CH4 STM32_DMA1_CHAN3 # define DMACHAN_TIM3_CH4 STM32_DMA1_CHAN3
# define DMACHAN_TIM3_UP_2 STM32_DMA1_CHAN3 # define DMACHAN_TIM3_UP_2 STM32_DMA1_CHAN3
# define DMACHAN_DAC_CH1 STM32_DMA1_CHAN3
# define DMACHAN_SPI2_RX STM32_DMA1_CHAN4 # define DMACHAN_SPI2_RX STM32_DMA1_CHAN4
# define DMACHAN_I2S2_RX STM32_DMA1_CHAN4 # define DMACHAN_I2S2_RX STM32_DMA1_CHAN4

View File

@ -121,7 +121,7 @@
#endif #endif
/* At the moment there is no proper implementation for timers external /* At the moment there is no proper implementation for timers external
* trigger in STM32L15XX May be added latter * trigger in STM32L15XX may be added later
*/ */
#if defined(ADC_HAVE_TIMER) && defined(CONFIG_STM32_STM32L15XX) #if defined(ADC_HAVE_TIMER) && defined(CONFIG_STM32_STM32L15XX)