Explorar el Código

Fix error on Teensy 2.0 & LC

main
PaulStoffregen hace 9 años
padre
commit
e643f24cdd
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      utility/Sd2Card.cpp

+ 3
- 1
utility/Sd2Card.cpp Ver fichero

@@ -476,7 +476,9 @@ uint8_t Sd2Card::readBlock(uint32_t block, uint8_t* dst) {
*/
uint8_t Sd2Card::readData(uint32_t block,
uint16_t offset, uint16_t count, uint8_t* dst) {
//uint16_t n;
#if !defined(USE_TEENSY3_SPI) && defined(OPTIMIZE_HARDWARE_SPI)
uint16_t n;
#endif
if (count == 0) return true;
if ((count + offset) > 512) {
goto fail;

Cargando…
Cancelar
Guardar