| 123456789101112131415161718192021222324252627282930313233343536 | // Program to compare size of SdFat with the SD.h library.#include <SPI.h>// Select the test library by commenting out one of the following two lines.// #include <SD.h>#include <SdFat.h>// SD chip select pin.const uint8_t SD_CS_PIN = SS;#ifdef __SD_H__File file;#else  // __SD_H__SdFat SD;SdFile file;#endif // __SD_H__void setup() {  Serial.begin(9600);  while (!Serial) {}  // wait for Leonardo  if (!SD.begin(SD_CS_PIN)) {    Serial.println("begin failed");    return;  }  #ifdef __SD_H__  file = SD.open("SFN_file.txt", FILE_WRITE);    #else  // __SD_H__  file.open("LFN_file.txt", O_RDWR | O_CREAT);  #endif  // __SD_H__    file.println("Hello");  file.close();  Serial.println("Done");}//------------------------------------------------------------------------------void loop() {}
 |