mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Renaming constants: SD_MODE -> FILE_MODE
This commit is contained in:
@ -15,21 +15,21 @@ void setup()
|
|||||||
ATS_PrintTestStatus("SD.begin()", b = SD.begin(4));
|
ATS_PrintTestStatus("SD.begin()", b = SD.begin(4));
|
||||||
if (!b) goto done;
|
if (!b) goto done;
|
||||||
|
|
||||||
f = SD.open("test.txt", SD_TRUNCATE);
|
f = SD.open("test.txt", FILE_TRUNCATE);
|
||||||
ATS_PrintTestStatus("SD.open()", f);
|
ATS_PrintTestStatus("SD.open()", f);
|
||||||
if (!f) goto done;
|
if (!f) goto done;
|
||||||
|
|
||||||
f.print("1234");
|
f.print("1234");
|
||||||
f.close();
|
f.close();
|
||||||
|
|
||||||
f = SD.open("test.txt", SD_TRUNCATE);
|
f = SD.open("test.txt", FILE_TRUNCATE);
|
||||||
ATS_PrintTestStatus("SD.open()", f);
|
ATS_PrintTestStatus("SD.open()", f);
|
||||||
if (!f) goto done;
|
if (!f) goto done;
|
||||||
|
|
||||||
f.print("abcde");
|
f.print("abcde");
|
||||||
f.close();
|
f.close();
|
||||||
|
|
||||||
f = SD.open("test.txt", SD_APPEND);
|
f = SD.open("test.txt", FILE_APPEND);
|
||||||
ATS_PrintTestStatus("SD.open()", f);
|
ATS_PrintTestStatus("SD.open()", f);
|
||||||
if (!f) goto done;
|
if (!f) goto done;
|
||||||
|
|
||||||
@ -71,7 +71,7 @@ void setup()
|
|||||||
|
|
||||||
f.close();
|
f.close();
|
||||||
|
|
||||||
f = SD.open("test2.txt", SD_TRUNCATE);
|
f = SD.open("test2.txt", FILE_TRUNCATE);
|
||||||
ATS_PrintTestStatus("SD.open()", f);
|
ATS_PrintTestStatus("SD.open()", f);
|
||||||
if (!f) goto done;
|
if (!f) goto done;
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ void setup()
|
|||||||
if (!b) goto done;
|
if (!b) goto done;
|
||||||
|
|
||||||
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf.txt"));
|
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf.txt"));
|
||||||
ATS_PrintTestStatus("SD.open()", f = SD.open("asdf.txt", SD_TRUNCATE)); f.close();
|
ATS_PrintTestStatus("SD.open()", f = SD.open("asdf.txt", FILE_TRUNCATE)); f.close();
|
||||||
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf.txt"));
|
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf.txt"));
|
||||||
ATS_PrintTestStatus("SD.exists()", SD.exists("/asdf.txt"));
|
ATS_PrintTestStatus("SD.exists()", SD.exists("/asdf.txt"));
|
||||||
ATS_PrintTestStatus("SD.remove()", SD.remove("asdf.txt"));
|
ATS_PrintTestStatus("SD.remove()", SD.remove("asdf.txt"));
|
||||||
@ -48,13 +48,13 @@ void setup()
|
|||||||
ATS_PrintTestStatus("!SD.exists()", !SD.exists("x/y"));
|
ATS_PrintTestStatus("!SD.exists()", !SD.exists("x/y"));
|
||||||
ATS_PrintTestStatus("!SD.exists()", !SD.exists("x/y/z"));
|
ATS_PrintTestStatus("!SD.exists()", !SD.exists("x/y/z"));
|
||||||
|
|
||||||
ATS_PrintTestStatus("!SD.open()", !(f = SD.open("asdf/asdf.txt", SD_TRUNCATE))); f.close();
|
ATS_PrintTestStatus("!SD.open()", !(f = SD.open("asdf/asdf.txt", FILE_TRUNCATE))); f.close();
|
||||||
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf"));
|
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf"));
|
||||||
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf.txt"));
|
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf.txt"));
|
||||||
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf/asdf.txt"));
|
ATS_PrintTestStatus("!SD.exists()", !SD.exists("asdf/asdf.txt"));
|
||||||
ATS_PrintTestStatus("SD.mkdir()", SD.mkdir("asdf"));
|
ATS_PrintTestStatus("SD.mkdir()", SD.mkdir("asdf"));
|
||||||
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf"));
|
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf"));
|
||||||
ATS_PrintTestStatus("SD.open()", f = SD.open("asdf/asdf.txt", SD_TRUNCATE)); f.close();
|
ATS_PrintTestStatus("SD.open()", f = SD.open("asdf/asdf.txt", FILE_TRUNCATE)); f.close();
|
||||||
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf/asdf.txt"));
|
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf/asdf.txt"));
|
||||||
ATS_PrintTestStatus("!SD.rmdir()", !SD.rmdir("asdf"));
|
ATS_PrintTestStatus("!SD.rmdir()", !SD.rmdir("asdf"));
|
||||||
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf"));
|
ATS_PrintTestStatus("SD.exists()", SD.exists("asdf"));
|
||||||
|
@ -20,9 +20,9 @@
|
|||||||
#include <utility/SdFat.h>
|
#include <utility/SdFat.h>
|
||||||
#include <utility/SdFatUtil.h>
|
#include <utility/SdFatUtil.h>
|
||||||
|
|
||||||
#define SD_READ O_READ
|
#define FILE_READ O_READ
|
||||||
#define SD_TRUNCATE (O_WRITE | O_CREAT | O_TRUNC)
|
#define FILE_TRUNCATE (O_WRITE | O_CREAT | O_TRUNC)
|
||||||
#define SD_APPEND (O_WRITE | O_CREAT | O_APPEND)
|
#define FILE_APPEND (O_WRITE | O_CREAT | O_APPEND)
|
||||||
|
|
||||||
class File : public Stream {
|
class File : public Stream {
|
||||||
public:
|
public:
|
||||||
@ -53,7 +53,7 @@ public:
|
|||||||
// Open the specified file/directory with the supplied mode (e.g. read or
|
// Open the specified file/directory with the supplied mode (e.g. read or
|
||||||
// write, etc). Returns a File object for interacting with the file.
|
// write, etc). Returns a File object for interacting with the file.
|
||||||
// Note that currently only one file can be open at a time.
|
// Note that currently only one file can be open at a time.
|
||||||
File open(char *filename, uint8_t mode = SD_READ);
|
File open(char *filename, uint8_t mode = FILE_READ);
|
||||||
|
|
||||||
// Methods to determine if the requested file path exists.
|
// Methods to determine if the requested file path exists.
|
||||||
boolean exists(char *filepath);
|
boolean exists(char *filepath);
|
||||||
|
Reference in New Issue
Block a user