Skip to content

Commit 94094c0

Browse files
Make examples build by default
1 parent 81aa7e6 commit 94094c0

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

examples/BufferedPrint/BufferedPrint.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using namespace sdfat;
99

1010
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
1111
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
12-
#define SD_FAT_TYPE 0
12+
#define SD_FAT_TYPE 1
1313
/*
1414
Change the value of SD_CS_PIN if you are using SPI and
1515
your hardware does not use the default value, SS.

examples/DirectoryFunctions/DirectoryFunctions.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using namespace sdfat;
99

1010
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
1111
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
12-
#define SD_FAT_TYPE 0
12+
#define SD_FAT_TYPE 1
1313
/*
1414
Change the value of SD_CS_PIN if you are using SPI and
1515
your hardware does not use the default value, SS.

examples/OpenNext/OpenNext.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using namespace sdfat;
88

99
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
1010
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
11-
#define SD_FAT_TYPE 0
11+
#define SD_FAT_TYPE 1
1212
/*
1313
Change the value of SD_CS_PIN if you are using SPI and
1414
your hardware does not use the default value, SS.

examples/QuickStart/QuickStart.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using namespace sdfat;
99

1010
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
1111
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
12-
#define SD_FAT_TYPE 3
12+
#define SD_FAT_TYPE 1
1313
//
1414
// Set DISABLE_CHIP_SELECT to disable a second SPI device.
1515
// For example, with the Ethernet shield, set DISABLE_CHIP_SELECT

examples/ReadCsvFile/ReadCsvFile.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace sdfat;
55

66
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
77
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
8-
#define SD_FAT_TYPE 0
8+
#define SD_FAT_TYPE 1
99
/*
1010
Change the value of SD_CS_PIN if you are using SPI and
1111
your hardware does not use the default value, SS.

examples/RtcTimestampTest/RtcTimestampTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ using namespace sdfat;
1616

1717
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
1818
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
19-
#define SD_FAT_TYPE 0
19+
#define SD_FAT_TYPE 1
2020
/*
2121
Change the value of SD_CS_PIN if you are using SPI and
2222
your hardware does not use the default value, SS.

examples/bench/bench.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using namespace sdfat;
1010

1111
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
1212
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
13-
#define SD_FAT_TYPE 0
13+
#define SD_FAT_TYPE 1
1414
/*
1515
Change the value of SD_CS_PIN if you are using SPI and
1616
your hardware does not use the default value, SS.

examples/rename/rename.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using namespace sdfat;
99

1010
// SD_FAT_TYPE = 0 for SdFat/File as defined in SdFatConfig.h,
1111
// 1 for FAT16/FAT32, 2 for exFAT, 3 for FAT16/FAT32 and exFAT.
12-
#define SD_FAT_TYPE 0
12+
#define SD_FAT_TYPE 1
1313

1414
/*
1515
Change the value of SD_CS_PIN if you are using SPI and

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name=SdFat
1+
name=ESP8266SdFat
22
version=2.0.2
33
license=MIT
44
author=Bill Greiman <[email protected]>

0 commit comments

Comments
 (0)