From 5bb62283862a369e8643641ef9f0d69429c0bb6c Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 23 Apr 2016 13:04:22 +0200 Subject: [PATCH] syntax suger --- armsrc/BigBuf.c | 2 +- armsrc/fpgaloader.c | 14 +++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/armsrc/BigBuf.c b/armsrc/BigBuf.c index 267921f4..57eb8db1 100644 --- a/armsrc/BigBuf.c +++ b/armsrc/BigBuf.c @@ -64,7 +64,7 @@ void BigBuf_Clear_ext(bool verbose) { memset(BigBuf, 0, BIGBUF_SIZE); if (verbose) - Dbprintf("Buffer cleared (%i bytes)",BIGBUF_SIZE); + Dbprintf("Buffer cleared (%i bytes)", BIGBUF_SIZE); } void BigBuf_Clear_keep_EM(void) diff --git a/armsrc/fpgaloader.c b/armsrc/fpgaloader.c index 64ddc608..86f144cf 100644 --- a/armsrc/fpgaloader.c +++ b/armsrc/fpgaloader.c @@ -117,8 +117,7 @@ void SetupSpi(int mode) // Set up the synchronous serial port, with the one set of options that we // always use when we are talking to the FPGA. Both RX and TX are enabled. //----------------------------------------------------------------------------- -void FpgaSetupSsc(void) -{ +void FpgaSetupSsc(void) { // First configure the GPIOs, and get ourselves a clock. AT91C_BASE_PIOA->PIO_ASR = GPIO_SSC_FRAME | @@ -156,18 +155,15 @@ void FpgaSetupSsc(void) // ourselves, not to another buffer). The stuff to manipulate those buffers // is in apps.h, because it should be inlined, for speed. //----------------------------------------------------------------------------- -bool FpgaSetupSscDma(uint8_t *buf, int len) -{ - if (buf == NULL) - return false; - +bool FpgaSetupSscDma(uint8_t *buf, int len) { + if (buf == NULL) return false; + AT91C_BASE_PDC_SSC->PDC_PTCR = AT91C_PDC_RXTDIS; // Disable DMA Transfer AT91C_BASE_PDC_SSC->PDC_RPR = (uint32_t) buf; // transfer to this memory address AT91C_BASE_PDC_SSC->PDC_RCR = len; // transfer this many bytes AT91C_BASE_PDC_SSC->PDC_RNPR = (uint32_t) buf; // next transfer to same memory address AT91C_BASE_PDC_SSC->PDC_RNCR = len; // ... with same number of bytes - AT91C_BASE_PDC_SSC->PDC_PTCR = AT91C_PDC_RXTEN; // go! - + AT91C_BASE_PDC_SSC->PDC_PTCR = AT91C_PDC_RXTEN; // go! return true; } -- 2.39.2