Pārlūkot izejas kodu

Merge pull request #9163 from GMagician/2.0.x-SD-issues-fix

[2.0.x] sd issue fix
Scott Lahteine 7 gadus atpakaļ
vecāks
revīzija
6ba8cf8405
Revīzijas autora e-pasta adrese nav piesaistīta nevienam kontam
2 mainītis faili ar 11 papildinājumiem un 11 dzēšanām
  1. 10
    10
      Marlin/src/sd/Sd2Card.cpp
  2. 1
    1
      Marlin/src/sd/Sd2Card.h

+ 10
- 10
Marlin/src/sd/Sd2Card.cpp Parādīt failu

@@ -41,6 +41,8 @@
41 41
 #include "../Marlin.h"
42 42
 
43 43
 #if ENABLED(SD_CHECK_AND_RETRY)
44
+  static bool crcSupported = true;
45
+
44 46
   #ifdef FAST_CRC
45 47
     static const uint8_t crctab7[] PROGMEM = {
46 48
       0x00,0x09,0x12,0x1b,0x24,0x2d,0x36,0x3f,0x48,0x41,0x5a,0x53,0x6c,0x65,0x7e,0x77,
@@ -267,10 +269,7 @@ bool Sd2Card::init(uint8_t sckRateID, pin_t chipSelectPin) {
267 269
   }
268 270
 
269 271
 #if ENABLED(SD_CHECK_AND_RETRY)
270
-  if (cardCommand( CMD59, 1 ) != R1_IDLE_STATE) {
271
-    error(SD_CARD_ERROR_CMD59);
272
-    goto FAIL;
273
-  }
272
+  crcSupported = (cardCommand(CMD59, 1) == R1_IDLE_STATE);
274 273
 #endif
275 274
 
276 275
   // check SD version
@@ -340,21 +339,22 @@ bool Sd2Card::readBlock(uint32_t blockNumber, uint8_t* dst) {
340 339
       else if (readData(dst, 512))
341 340
         return true;
342 341
 
342
+      chipDeselect();
343 343
       if (!--retryCnt) break;
344 344
 
345
-      chipDeselect();
346 345
       cardCommand(CMD12, 0); // Try sending a stop command, ignore the result.
347 346
       errorCode_ = 0;
348 347
     }
348
+    return false;
349 349
   #else
350
-    if (cardCommand(CMD17, blockNumber))
350
+    if (cardCommand(CMD17, blockNumber)) {
351 351
       error(SD_CARD_ERROR_CMD17);
352
+      chipDeselect();
353
+      return false;
354
+    }
352 355
     else
353 356
       return readData(dst, 512);
354 357
   #endif
355
-
356
-  chipDeselect();
357
-  return false;
358 358
 }
359 359
 
360 360
 /**
@@ -450,7 +450,7 @@ bool Sd2Card::readData(uint8_t* dst, uint16_t count) {
450 450
 #if ENABLED(SD_CHECK_AND_RETRY)
451 451
   {
452 452
     uint16_t recvCrc = (spiRec() << 8) | spiRec();
453
-    if (recvCrc != CRC_CCITT(dst, count)) {
453
+    if (crcSupported && recvCrc != CRC_CCITT(dst, count)) {
454 454
       error(SD_CARD_ERROR_READ_CRC);
455 455
       goto FAIL;
456 456
     }

+ 1
- 1
Marlin/src/sd/Sd2Card.h Parādīt failu

@@ -71,7 +71,7 @@ uint8_t const SD_CARD_ERROR_CMD0 = 0x01,                // timeout error for com
71 71
               SD_CARD_ERROR_WRITE_TIMEOUT = 0x17,       // timeout occurred during write programming
72 72
               SD_CARD_ERROR_SCK_RATE = 0x18,            // incorrect rate selected
73 73
               SD_CARD_ERROR_INIT_NOT_CALLED = 0x19,     // init() not called
74
-              SD_CARD_ERROR_CMD59 = 0x1A,               // card returned an error for CMD59 (CRC_ON_OFF)
74
+              // 0x1A is unused now, it was: card returned an error for CMD59 (CRC_ON_OFF)
75 75
               SD_CARD_ERROR_READ_CRC = 0x1B;            // invalid read CRC
76 76
 
77 77
 // card types

Notiek ielāde…
Atcelt
Saglabāt