diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2020-11-21 01:25:26 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2020-11-21 01:25:26 -0700 |
commit | 14a651cda0bd8dfb992d2a6a1544300c39492ca3 (patch) | |
tree | a3f4b148fe64736f7bb73784498871009faf1fe0 /02-usart/include/core/isrs.inc | |
parent | fd763486d875968941c77386e23936e817856c8e (diff) | |
download | stm32l4-14a651cda0bd8dfb992d2a6a1544300c39492ca3.tar.gz stm32l4-14a651cda0bd8dfb992d2a6a1544300c39492ca3.tar.bz2 stm32l4-14a651cda0bd8dfb992d2a6a1544300c39492ca3.zip |
Implemented DMA abstraction in the peri/dma.c source file.
This abstraction makes it much more intuitive to use the
DMA features on the STM32L4 boards.
Diffstat (limited to '02-usart/include/core/isrs.inc')
-rw-r--r-- | 02-usart/include/core/isrs.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/02-usart/include/core/isrs.inc b/02-usart/include/core/isrs.inc index e45e216..0682238 100644 --- a/02-usart/include/core/isrs.inc +++ b/02-usart/include/core/isrs.inc @@ -75,11 +75,11 @@ IRQ(on_uart4, UART4, 68) IRQ(on_uart5, UART5, 69) IRQ(on_tim6_dacunder, TIM6_DACUNDER, 70) IRQ(on_tim7, TIM7, 71) -IRQ(on_dma2_channel1, DMA2_CHANNEL1, 72) -IRQ(on_dma2_channel2, DMA2_CHANNEL2, 73) -IRQ(on_dma2_channel3, DMA2_CHANNEL3, 74) -IRQ(on_dma2_channel4, DMA2_CHANNEL4, 75) -IRQ(on_dma2_channel5, DMA2_CHANNEL5, 76) +IRQ(on_dma2_channel1, DMA2_CHANNEL1_IRQ, 72) +IRQ(on_dma2_channel2, DMA2_CHANNEL2_IRQ, 73) +IRQ(on_dma2_channel3, DMA2_CHANNEL3_IRQ, 74) +IRQ(on_dma2_channel4, DMA2_CHANNEL4_IRQ, 75) +IRQ(on_dma2_channel5, DMA2_CHANNEL5_IRQ, 76) IRQ(on_dfsdm1_flt0, DFSDM1_FLT0, 77) IRQ(on_dfsdm1_flt1, DFSDM1_FLT1, 78) IRQ(on_dfsdm1_flt2, DFSDM1_FLT2, 79) |