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 c819ceb commit aed496cCopy full SHA for aed496c
examples/GoldilocksAnalogueTestSuite/GoldilocksAnalogueTestSuite.ino
@@ -151,8 +151,7 @@ void setup() {
151
// Now we will try to open the 'volume'/'partition' - it should be FAT16 or FAT32
152
if (!volume.init(card)) {
153
Serial.println(F("Could not find FAT16/FAT32 partition.\nMake sure you've formatted the card"));
154
- return;
155
- }
+ } else {
156
157
// print the type and size of the first FAT-type volume
158
uint32_t volumesize;
@@ -177,6 +176,7 @@ void setup() {
177
176
178
// list all files in the card with date and size
179
root.ls(LS_R | LS_DATE | LS_SIZE);
+ }
180
181
// Now set up two tasks to help us with testing.
182
xTaskCreate(
0 commit comments