Browse Source

Merge pull request #3207 from jbrazio/bugfix/toshiba-sdhc-flashair

Toshiba Flash Air Wifi SD card support
pull/1/head
Scott Lahteine 8 years ago
parent
commit
42ec1f39e7
  1. 4
      Marlin/Sd2Card.cpp

4
Marlin/Sd2Card.cpp

@ -498,9 +498,13 @@ bool Sd2Card::readData(uint8_t* dst, uint16_t count) {
spiRec();
#endif
chipSelectHigh();
// Send an additional dummy byte, required by Toshiba Flash Air SD Card
spiSend(0XFF);
return true;
fail:
chipSelectHigh();
// Send an additional dummy byte, required by Toshiba Flash Air SD Card
spiSend(0XFF);
return false;
}
//------------------------------------------------------------------------------

Loading…
Cancel
Save