Hi all.
I am running a multi_sub folders sketch which used libraries:
#include <TJpg_Decoder.h>
#include "SPI.h"
#include <TFT_eSPI.h>
#include <TinyGPS++.h>
in setup(){
....
if (!SD.begin(14)) {
Serial.println("Card Mount Failed");
return;
}
.......
}
one sub-folder:
void xxx(){
......................
File GPSDATAlogIDr = SD.open("/test.txt");
..........................
}
not have:
#include "FS.h"
#include "SD.h"
all compiling passed.
why and how 'SD.begin(14)'
without SD.h
where possibly defined "File"
without a SD library?
any clue thankful.
Adam