We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b20f88 commit c844663Copy full SHA for c844663
Firmware/RTK_Surveyor/Begin.ino
@@ -397,10 +397,7 @@ void beginSD()
397
tries++;
398
}
399
if (tries == maxTries)
400
- {
401
- log_d("sdPresent failed");
402
break; // Give up loop
403
- }
404
405
// If an SD card is present, allow SdFat to take over
406
log_d("SD card detected - using SPI and SdFat");
Firmware/RTK_Surveyor/RTK_Surveyor.ino
@@ -1008,8 +1008,9 @@ void updateSD()
1008
1009
else if (sdPresent() == true) // Poll card to see if a card is inserted
1010
{
1011
- systemPrintln("SD inserted");
1012
beginSD(); // Attempt to start SD
+ if(online.microSD == true)
1013
+ systemPrintln("SD inserted");
1014
1015
1016
0 commit comments