Browse Source

Improve code in Sd2Card::readBlock

pull/1/head
Scott Lahteine 8 years ago
parent
commit
40050db210
  1. 41
      Marlin/Sd2Card.cpp

41
Marlin/Sd2Card.cpp

@ -383,38 +383,31 @@ fail:
* the value zero, false, is returned for failure. * the value zero, false, is returned for failure.
*/ */
bool Sd2Card::readBlock(uint32_t blockNumber, uint8_t* dst) { bool Sd2Card::readBlock(uint32_t blockNumber, uint8_t* dst) {
#if ENABLED(SD_CHECK_AND_RETRY)
uint8_t retryCnt = 3;
// use address if not SDHC card // use address if not SDHC card
if (type() != SD_CARD_TYPE_SDHC) blockNumber <<= 9; if (type() != SD_CARD_TYPE_SDHC) blockNumber <<= 9;
retry2:
retryCnt --; #if ENABLED(SD_CHECK_AND_RETRY)
if (cardCommand(CMD17, blockNumber)) { uint8_t retryCnt = 3;
error(SD_CARD_ERROR_CMD17); do {
if (retryCnt > 0) goto retry; if (!cardCommand(CMD17, blockNumber)) {
goto fail; if (readData(dst, 512)) return true;
}
if (!readData(dst, 512)) {
if (retryCnt > 0) goto retry;
goto fail;
} }
return true; else
retry: error(SD_CARD_ERROR_CMD17);
if (--retryCnt) break;
chipSelectHigh(); chipSelectHigh();
cardCommand(CMD12, 0);//Try sending a stop command, but ignore the result. cardCommand(CMD12, 0); // Try sending a stop command, ignore the result.
errorCode_ = 0; errorCode_ = 0;
goto retry2; } while (true);
#else #else
// use address if not SDHC card if (cardCommand(CMD17, blockNumber))
if (type() != SD_CARD_TYPE_SDHC) blockNumber <<= 9;
if (cardCommand(CMD17, blockNumber)) {
error(SD_CARD_ERROR_CMD17); error(SD_CARD_ERROR_CMD17);
goto fail; else
}
return readData(dst, 512); return readData(dst, 512);
#endif #endif
fail:
chipSelectHigh(); chipSelectHigh();
return false; return false;
} }

Loading…
Cancel
Save