inversion des fonctions erreur SD card

This commit is contained in:
pgp 2021-07-01 14:27:05 +02:00
parent b9fb098576
commit 657a6b1eb0

View file

@ -372,19 +372,22 @@ void testFileIO(fs::FS &fs, const char * path){
void sd_init() {
uint8_t cardType = SD.cardType();
if(cardType == CARD_NONE){
Serial.println("No SD card attached");
errorCode(4);
return;
}
if(!SD.begin()){
Serial.println("Card Mount Failed");
errorCode(3);
return;
}
uint8_t cardType = SD.cardType();
if(cardType == CARD_NONE){
Serial.println("No SD card attached");
errorCode(4);
return;
}
uint64_t cardSize = SD.cardSize() / (1024 * 1024);
Serial.printf("SD Card Size: %lluMB\n", cardSize);