Fix SD_CHECK_AND_RETRY condition

Addressing #5806
This commit is contained in:
Scott Lahteine 2017-02-11 23:55:56 -06:00 committed by GitHub
parent c64ecf95e2
commit e1702816f6

View file

@ -406,7 +406,7 @@ bool Sd2Card::readBlock(uint32_t blockNumber, uint8_t* dst) {
else
error(SD_CARD_ERROR_CMD17);
if (--retryCnt) break;
if (!--retryCnt) break;
chipSelectHigh();
cardCommand(CMD12, 0); // Try sending a stop command, ignore the result.