1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/nucleo-l152re: fix DMA configuration

This commit is contained in:
Alexandre Abadie 2020-10-07 17:46:57 +02:00
parent a792aaaf9e
commit 28b08d8b6b
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -39,10 +39,10 @@ static const dma_conf_t dma_config[] = {
{ .stream = 4 }, /* DMA1 Channel 4 - USART1_TX */
};
#define DMA_0_ISR isr_dma1_ch2
#define DMA_1_ISR isr_dma1_ch3
#define DMA_2_ISR isr_dma1_ch7
#define DMA_3_ISR isr_dma1_ch4
#define DMA_0_ISR isr_dma1_channel2
#define DMA_1_ISR isr_dma1_channel3
#define DMA_2_ISR isr_dma1_channel7
#define DMA_3_ISR isr_dma1_channel4
#define DMA_NUMOF ARRAY_SIZE(dma_config)
/** @} */