Browse Source

stm32/dma: Fix spelling of "corresponding" in two locations.

pull/4040/merge
David Lechner 6 years ago
committed by Damien George
parent
commit
3fccd78aca
  1. 4
      ports/stm32/dma.c

4
ports/stm32/dma.c

@ -149,7 +149,7 @@ static const DMA_InitTypeDef dma_init_struct_dac = {
#define DMA_SUB_INSTANCE_AS_UINT8(dma_channel) (dma_channel) #define DMA_SUB_INSTANCE_AS_UINT8(dma_channel) (dma_channel)
#define DMA1_ENABLE_MASK (0x007f) // Bits in dma_enable_mask corresponfing to DMA1 (7 channels) #define DMA1_ENABLE_MASK (0x007f) // Bits in dma_enable_mask corresponding to DMA1 (7 channels)
#define DMA2_ENABLE_MASK (0x0f80) // Bits in dma_enable_mask corresponding to DMA2 (only 5 channels) #define DMA2_ENABLE_MASK (0x0f80) // Bits in dma_enable_mask corresponding to DMA2 (only 5 channels)
// DMA1 streams // DMA1 streams
@ -280,7 +280,7 @@ static const uint8_t dma_irqn[NSTREAM] = {
#define DMA_SUB_INSTANCE_AS_UINT8(dma_request) (dma_request) #define DMA_SUB_INSTANCE_AS_UINT8(dma_request) (dma_request)
#define DMA1_ENABLE_MASK (0x007f) // Bits in dma_enable_mask corresponfing to DMA1 #define DMA1_ENABLE_MASK (0x007f) // Bits in dma_enable_mask corresponding to DMA1
#define DMA2_ENABLE_MASK (0x3f80) // Bits in dma_enable_mask corresponding to DMA2 #define DMA2_ENABLE_MASK (0x3f80) // Bits in dma_enable_mask corresponding to DMA2
// These descriptors are ordered by DMAx_Channel number, and within a channel by request // These descriptors are ordered by DMAx_Channel number, and within a channel by request

Loading…
Cancel
Save