Explorar el Código

handle odd byte with option to PUSHR_CONT

main
Kurt Eckhardt hace 8 años
padre
commit
157095efe9
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      SPI.cpp

+ 4
- 1
SPI.cpp Ver fichero

@@ -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--;
}


Cargando…
Cancelar
Guardar