Browse Source

handle odd byte with option to PUSHR_CONT

main
Kurt Eckhardt 8 years ago
parent
commit
157095efe9
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      SPI.cpp

+ 4
- 1
SPI.cpp View File

@@ -338,7 +338,10 @@ void SPIClass::transfer(void *buf, size_t count) {

// Now lets loop while we still have data to output
if (count & 1) {
KINETISK_SPI0.PUSHR = *p_write++ | SPI_PUSHR_CTAS(0);
if (count > 1)
KINETISK_SPI0.PUSHR = *p_write++ | SPI_PUSHR_CONT | SPI_PUSHR_CTAS(0);
else
KINETISK_SPI0.PUSHR = *p_write++ | SPI_PUSHR_CTAS(0);
count--;
}


Loading…
Cancel
Save