From acfb4482804e6972975addd1e7e7b65234b364a6 Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Sat, 15 Mar 2014 22:22:37 +0000 Subject: [PATCH] Fix whitespace error --- hw2/timer_dma.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hw2/timer_dma.c b/hw2/timer_dma.c index 77dc689..8d5c19d 100644 --- a/hw2/timer_dma.c +++ b/hw2/timer_dma.c @@ -107,10 +107,10 @@ tdma_t *tdma_open(tdma_chan_t chan, int alt, PinName pin, PinMode mode) // Configure DMA channel port->dma->dcr = DMA_DCR_SINC_MASK // Source increment - | DMA_DCR_DINC_MASK // Dest increment - | DMA_DCR_SSIZE(0) // 32-bit access - | DMA_DCR_DSIZE(0) // 32-bit access - | DMA_DCR_D_REQ_MASK; // Only run once + | DMA_DCR_DINC_MASK // Dest increment + | DMA_DCR_SSIZE(0) // 32-bit access + | DMA_DCR_DSIZE(0) // 32-bit access + | DMA_DCR_D_REQ_MASK; // Only run once // Setup and enable DMA MUX port->mux->cfg = DMAMUX_CHCFG_SOURCE(req) // Request source -- 2.43.2